Friday, November 21, 2008

The Most Useful .NET Utility Classes Developers Tend To Reinvent Rather Than Reuse

Check out this great post of Phil Haack: http://haacked.com/archive/2007/06/13/the-most-useful-.net-utility-classes-developers-tend-to-reinvent.aspx

Monday, November 10, 2008

Unable to open Server Explorer in Visual Studio

When server explorer doesn't open when clicking on the menu option View|Server Explorer, the first solution is to run the command /ResetSkipPkgs on the visual studio command prompt. Open a development command line window by clicking on the Start|Programs|Microsoft Visual Studio 2008|Visual Studio Tools|Visual Studio 2008 Command Prompt shortcut.
Type devenv /resetskippkgs in there. What /ResetSkipPkgs does is that it clears all options to skip loading added to VSPackages by users wishing to avoid loading problem VSPackages, and then starts Visual Studio. The presence of a SkipLoading tag disables the loading of a VSPackage; clearing the tag re-enables the loading of the VSPackage.

If this doesn't work, then reinstall the visual studio again.