Seth Rippee's Q&A profile
Software Development for Windows Vista Windows SDK vs Vista SDK
i'm having problems getting the Vista SDK to install on RC2 ... but at a higher level, what are the differences between the Vista SDK and the Windows SDK if i get Vista SDK to install on a Vista machine, then would i have any need to install the Windows SDK Thanks, casey nevermind, i now see that they are the same. earlier i was seeing Windows SDK as the public facing bits, and Vista SDK was the name of it on the connect site ... so i had assumed they were different. Thanks ...Show All
Visual Basic Animating Gifs in VB
I have an gif file already saved (multi-frames) for animation. How do I incorperate it in my VB code and tell it the the timeframe of spanning frames Thanks. Use a picturebox control to display the .gif, the frame times are specified in the file. The ImageAnimator can help make playback smoother, check this thread for code ... ...Show All
Visual Basic ping IP/host
hey i have now somewhat succesfully made an ip-tracker. how do i make it able to "ping" an IP og host sa it will send out 4 packets or something and then count how many returns you know what i mean im sure. and is it possible to get a "whois" thing build in to it im using Visual Basic xpress 2005. //Martin No The process is purely a call to an external process. You cant update a progress bar from here. This will result in the window not showing. Public Shared Function RunExecutable(ByVal ExecutableName As String, ByVal args As String) As String Dim p As Diagnostics.Process = New Diagnostics ...Show All
Smart Device Development How can I prevent the user from changing tables columns width
Hi How can I prevent the user from changing tables columns width for "ListView" and "DataGrid" Thanks I tried to set the Nonclickable property of the ListView it just disable the click event when clicking the columns header but it still let the user change the columns width. In the DataGrid want to see the column titles just not let the user cghange the width of the columns. So sorry it did not help Thanks anyway ...Show All
SQL Server Left Outer Join versus Subquery
Hello Chaps, I have got question about the performance of subquery and left outer join My scenario is that I have two tables Customer Mater and address book. Customer Mater and address book tables hold the record for both carrier and customer. and i want retrieve the record for customer and related carrier as well i have two options 1. either use left outer join (i.e. Join Customer master to Address Book 2 times, 1 for customer and 1 for carrier) by: Address book (as customer) Left outer Join Customer Master (on related Key) AddressBook (as carrier) Left Outer Join Customer master (on related Key) 2.or use 1 join for customer ...Show All
Visual C++ Error C3767 : why ?
Hi, I'm moving a big project from VS2003 to VS2005 right now. I have solved almost all my problems but not this one. I have an assembly (azurCfrUtils.dll, compile with /clr) with this header : Thanks for your answer. Yeak this could be it ! But then as I suppose 'bool' is public , the pb should come from LPSTORAGE which is : typedef /* [unique] */ IStorage *LPSTORAGE; (objidl.h) But IStorage is not something I can change, right So what Olivier ...Show All
Game Technologies: DirectX, XNA, XACT, etc. The XNA Resource Directory- XNAList
XNAList is aXNA Resource Directory.We are try to put all xna resource link all into one place. This way user can search and add new resources to the directory. The site should be up and running at full speed in the next few days. I would like all xna programmers to come over in sign-up. XNAList is part of Nik Nak Games. Site: www.xnaList.com e-mail: 1. Harrison- harrisonb@niknakgames.com 2. Rick- ricks@niknakgames.com There seems to be a bug - sometimes I have to hit search twice in order for the search to work. This only happens when I first open the page. Perhaps it has something to do with cookies ...Show All
Game Technologies: DirectX, XNA, XACT, etc. is there no tuts in text not video lol?
is there no tuts in text not video lol I can't stand video tuts not to be mean to people who make movies there great but im a learner by reading guides. I can't find any n00bie starter guide.. Any advice would help man years ago look for adobe movie tuts never found any now all i can find xna movies no text guides.4 http://www.riemers.net/eng/Tutorials/XNA/Csharp/Series1/Starting_a_project.php Follow it from start to finish. ...Show All
Software Development for Windows Vista Distributed Transaction FAQ
Hi, We wish to perform distributed transactions (using ADO.net 2) across multiple DB instances. Another team's previous experience with DT has shown that in the case where the application crashes it is possible that transactions will be stuck (some blame to DTC failing to realize the application crashed). The stuck transactions had to be manually killed Is that possible Does the MSDTC not have a timeout Is it configurable What are the problems I should expect when performing a distributed transaction Almost everyone I went to ask about this told me to stay away from DT but have had too little experience to be considered "reliable'. Your advice appreciated. Cheers, Hi, I'm trying to answer all your questions: ...Show All
SQL Server How to Schedule and Run a SSIS package
Hi Does any one know how to run How to Schedule and Run a SSIS Package for certain time intervals I have created an application which will do some data transfering from one database to another databse based on the start time and end time values(Which is been already configured in some tables). What I am exactly looking is that my application should do data transffering Based on only the time intervals(Startime and End Time) I wanted to execute my package only these time intervals. How to do this Can any one help please. Thanks & Regards Deepu M.I Hi Kirk, I have a SQL Server 2005 Advance Express Edition installed and I could not find SQL Server Agent as ...Show All
Visual C# Disabling Text boxes
Hi I have 50 Text boxes on a panel. The names for these Text Boxes will be of like T1,T2,T3...T50. Now I have a number which comes dynamically in to the code. Based on this number for Ex: 12, all the Text boxes after T12 should be disabled.Now i was not able to match the pattern of name of the Textboxes on the panel with the number.Any code snippets to do this are much appreciated. Like if (obtained_no like '%Textboxname%') { Then for(temp = obtained_no+1; temp <51; temp++) { disable(Texboxes_temp) } } Thanks! Hi.. I hope it will work. foreach (Control c in this .groupBox1.Controls) { TextBox tb = c as TextBox; if (tb != null ) { int startIndex = tb.Name ...Show All
Visual C++ What is WMN_FIRST?
In commctrl.h at line 388 a constant is defined that confuses me. I am looking to see if there is a range where special programmer defined notification messages belong (like WM_USER except for notifications.) I did a little searching and decided that there wasn't but then I noticed WMN_FIRST and WMN_LAST. There is a padding of 50 on either side; and, they are not used, as near as I can tell, in any file that ships with Visual Studio. There is absolutely no documentation on thesem whatsoever. Does anyone have a clue what this is Is it the official range for user defined notifications or is it something else For such issues, the win32 dev newsgroups at http://msdn.microsoft.com/newsgroups is the proper l ...Show All
Visual Studio Express Editions buttons
I've got a trouble with a program: I've placed a button on the userinterface. And I want that when you click on it, the button disapears for a moment. That's what I have: Sub button1_clik dim W as Long button1.visible = False Do until W = 100000000 W += 1 Loop button1.visible = True End Sub But that doesn't work. The button never dissapear Is there someone who can tell me how a button could disapear for a moment (Maybe there 's an own command ) to me it looks like you are using VB6. Can you confirm you are using VB.NET or VB6 These forums are only for VBExpress (VB.NET) development in general it may appear it hasnt disappeared but it may have. you could execute Application.DoEvents() when you made it inv ...Show All
Software Development for Windows Vista Building XPS printer driver on windows XP
Hi I want to use XPS printer driver on Windows XP. while installing this XPS printer driver on windows XP it's asking for some DLL files (ex. xdwmark.dll, xdcolman.dll). in WDk folder there is no such DLL that means i have to build this DLL from WDK building environment. when i am trying to build these dll from WDK's Windows XP build environment i am gettting following warning : [source path ] is not valid for the current OS target . can you help me how can i build these DLL for XP I am able to build these DLL from Windows Vista environment. but while printing from this d ...Show All
Visual C# Difference between 'string' and 'String'
Hi I would like to know the difference between 'string' and 'String' in CSharp 2.0. I had thought that 'string' mapped onto the Framework Type 'System.String' but I got a code compile error that I cannot explain. I am using Visual Studio 2005 (but I have also installed SP1 Beta). Consider the following two lines of code. private static String _uid1 = new String(Guid.NewGuid().ToString()); private static String _uid2 = new string(Guid.NewGuid().ToString()); The code for uid1 generates an error but not for uid2. The code for uid11 states the error is because 'System.String' does not have a constructor that takes a parameter of type 'String'. So what is happening so that uid2 does not generate an error Is there some implicit conversion ...Show All
