No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
Re: 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] | |
Re: 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! | |
Re: 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 … |
The End.