views:

227

answers:

1

I have a simple Web Handler project, and for some reason I cannot choose it's configuration either from the drop Down on the standard bar (It is greyed out), or from the Build Menu (there is no "Batch Build" or "Configuration Manager" menu entries for this one project). All the rest of my projects work fine, and it is a fresh clean build of Visual Studio 2008 (although it is on Windows7 64 bit). The project is fine on other computers (in that you can change configuration easily). Anyone seen anything like this before?

+1  A: 

You could try these. One of them is bound to work!

  1. Reset Visual Studio. Running this in the .NET Command Prompt should do it:

    devenv /resetsettings
    

    This will reset Visual Studio back to factory settings and you should have your missing icons back.

  2. Open up Import/Export Settings in the Tools menu and reset to General Development Settings.

  3. Use the Customize option in the Tools menu and see if you can drag the features back in place.

  4. Uninstall Visual Studio. Next, remove all the related registry keys that may not have been removed automatically. For example:

    HKEY_CURRENT_USER\Software\Microsoft\VisualStudio
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio
    

    Re-install Visual Studio and you should have the defaut layout back.

Jim
It's only for one project, all other projects work fine.
Kris Erickson
I take that back, reseting Development Settings worked...
Kris Erickson