When using trusted connection, I believe that implies Windows Authentication will be used. Is there an account on the SQL server with the same credentials as the local account you're logged in as and...
I checked the WebRequest.Create() method with that URI on my on machine and it worked fine... weird! That 'The handle is invalid' message seems kind of strange. Have you inspected the InnerException...
I will definitely check it out. I have plenty of coding books, have read Code Complete 2, and have a book outlining common programming techniques using the Windows API and C++, but I don't have any...
Thanks, I will relay what I've found to them. If they don't like what I can come up with, then they will either have to deal with it or change their tune. I can't make bread from nails, haha.
Well currently we're using the free version of FogBugz which has support for 2 users. If we want to have more than 2 users, we will need to purchase a subscription. We don't have a problem paying for...
Thanks! We currently use Yahoo! messenger for our live chat functionality, so it was just a feature that we thought would have been nice to have baked in. But it's not necessary. We use FogBugz for...
The only thing I can think of is that the MemoryStream argument you're supplying to Image.FromStream() is invalid for some reason. Since the MemoryStream constructor executes successfully, then I...
Easy enough. You see where Directory.GetFiles() is called? You can specify the filter there. I used the filter "*.*" to get all files. But you could prompt the user for a filter by altering the code...
So if I understand correctly, you're having trouble converting a byte[] to an Image, right? I think that would isolate the problem to the ByteArrayToImage() method. Maybe it's an encoding issue? Or...
Use [CODE] tags :) It makes the code so much more readable. I notice that in your Form.Load event handler you're using Receive_Buffer without initializing it first. You probably want to initialize...
I agree with Hannes, get a book on general OOP practices. Most books will teach you language independent OOP concepts that apply to VB, C++, C#, Java, etc... Because once you understand the general...
You're on the right track, Jim :) Using a single loop control variable like 'finished' is good programming practice. I applied the same principle to the nested loops contained within the case...
So we've recently formed a team of 4 people at my company and we're looking for some software we can use to collaborate with each other. The software needs to allow us to upload/download files, post...
You would need a program that can intercept keystrokes and look for the CTRL+J combination. I'm not sure how, but if you could develop a program that would hook all keystrokes sent to Windows and...
Not everything in WPF will translate directly to Silverlight (like the synchronous Socket class methods, ugh.) What does the namespace "x" translate to? There should be an "xmlns:x=http://<...>" at...
Wow, you're going to end up with some pretty massive integers. Really, it looks like your threads are completing concurrently because of the calls to Join(), but you may be having problems in...
Ehhh... not quite. Just adding a set accessor to the Grade property isn't going to solve your problem :) You still need to determine the grade letter using the average you get from a call to...