Migrating from Visual Studio 2003 to 2008

  • 1 minute to read
For those of you who are still developing with Visual Studio 2003 and .NET 1.x and want to take advantage of the enhancements in Visual Studio 2008 may have thought they were out of luck. There are breaking changes between the versions of the CLR and the Framework itself. <a... Read more

Visual Studio 2008 Multi-targeting

  • 1 minute to read
One of the new features in Visual Studio 2008 is the ability to target a project to any version of the .NET Framework from 2.0 and up. This is an excellent feature as it allows the entire development team to work with the same version of the IDE. Since it’s... Read more

Problems with comments and Google search

  • 1 minute to read
I had recently added a Google search box to my blog to allow easier searches on both Google and the Geekswithblogs site itself. However, it seems to have caused a problem today that was preventing people from leaving comments on any of my posts. After much trial and error, I... Read more

Priceless

  • 3 minutes to read
I was pulled in to a side conversation today about comments and it reminded me of something I blogged about on my personal blog (don’t bother going to it as the last entry was February of this year and it isn’t really maintained) about some comments I ran across in... Read more

Catching (Handling) Exceptions in .NET

  • 7 minutes to read
It seems there is a lot of confusion on how to properly catch exceptions in .NET, especially among newer developers. There are a lot of good references available on MSDN and on the web, but a lot of these are either very advanced or just hard to follow. I’m not... Read more