No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
Application developer for a large healthcare corporation. Write windows and Xbox 360 arcade games for fun.
- Interests
- Videogames, Dubstep, metal, and Harleys.
- PC Specs
- Windows all the way.
15 Posted Topics
Re: [QUOTE=StevenSchaffner;1624294]I got it to work. I did my things in ASP.[/QUOTE] Thanks to me Steve, lol. Are you having anymore trouble with it? | |
Re: C# using XNA is going to be your best bet for PC and Xbox game development. Unfortunately, you won't be able to start with anything other than the "easy" stuff. Know that HTML is not a "programming language" in the sense of creating an application. Patience is the best thing … | |
Re: There is a link on the page that adatapost gave to the syntax for connection strings for SQL Server 2005. If you don't have any experience with connection strings, [URL="http://msdn.microsoft.com/en-us/library/ms254494.aspx"]here[/URL] is a good source to learn it. | |
Re: [QUOTE=jingda;1555337]What i said if if you become a knight you get to rescue a princess and get the prize money and also for slaying the dragon[/QUOTE] Interesting, where do they hire dragonslaying, bounty hunter, hostage rescuing knights at these days. I wanna meet one. | |
Re: Strings and integers cannot be added together without operator overloading. If you want to validate a numerical value in a text box use this. [CODE]string str = someString.Text.Trim(); int num; bool isNum = int.TryParse(str, out num); if (isNum) { //continue doing what you want } // To convert a string … | |
Re: Make sure your header has everything you need. As far as refresh() goes. Check this [URL="http://msdn.microsoft.com/en-us/library/system.windows.controls.label.refresh%28v=vs.95%29.aspx"]http://msdn.microsoft.com/en-us/library/system.windows.controls.label.refresh%28v=vs.95%29.aspx[/URL] | |
Re: I'm more interested in founding out who did it. Most of my friends think it was a disgruntled former employee. | |
Re: Its funny this has two completely different sports in it. American football, John Lynch. | |
Re: [CODE] setPicsToVisible();//this method sets pictures to non visible [/CODE] I'm sorry, but that is hilarious to me. | |
Re: Create an exception class that derives from whatever general exception already in place. Define your custom exception's way to handle the exception you want. Implement it in your code the same way as the provided exception handling. Pseudocode: [CODE]Class MyCustomException : System.Exception { properties; if( condition == true ) { … | |
Hello everyone, I am using [CODE]ExecuteNonQuery()[/CODE] to execute a SQL command that inserts data into a SQL Server 2005 Database. I want to return the number of rows affected. I've read that this method returns the value, but I can't figure out how to access it. Help is very much … | |
The End.