Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #55.0K
~718 People Reached
Favorite Forums
Favorite Tags
c# x 1

3 Posted Topics

Member Avatar for dooda man

there are several ways, however, sounds like your solution needs to load .net framework by bootstrapping. anyway, check this out... [URL=http://support.microsoft.com/default.aspx?scid=kb;en-us;324733]HOW TO: Distribute the .NET Framework with a Visual Studio .NET Deployment Project[/URL]

Member Avatar for Jugortha
0
185
Member Avatar for Dani

alternate shorthand syntax... txtTest.Text = (txtName.Text == String.Empty) ? "No name" : txtName.Text; which translates to... if(txtName.Text == String.Empty) txtTest.Text = "No name"; else txtName.Text; maybe not as readable, but sure saves typing!

Member Avatar for guitarded
0
421
Member Avatar for grootjan

you can set vs.net to perform a "release" build or a "debug" build. to set it up to do a debug build go to main menu Build/Configuration Manager. select "Debug". alternately, you can select "Debug" on the toolbar. at that point you should be able to set your breakpoints. i …

Member Avatar for guitarded
0
112

The End.