-
Visual Studio IDE Errors
Every now and then I would get an error “An exception occurred while trying to create an instance of…” when trying to open a .aspx page. This solved it (from DotNetJunkies):Tip #1: Debug Open the project’s properties dialog, set the debug mode to “program”, apply, set “start application” to your VS.Net IDE (“devenv.exe” in the…
-
DataGrids and Properties
Why in THE WORLD, must I have properties in my object in order to see them in a DataGrid? For instance, if I create collection Wookies, each wookie better have a: private m_hairColor; public string HairColor { get{return m_hairColor;} set{m_hairColor = value;} } and not just public string HairColor; or it will give you some…
