views:

594

answers:

4

This is probably silly but very frustrating.
Using VS2008 with a C++ project, when I'm working normally, the breakpoints window is visible and active but when I'm debugging it disappears and can't be shown. This is a problem if I want to edit the condition of a breakpoint while running. Pressing the breakpoints window button doesn't do anything and neither does pressing Ctrl+Alt+B

Does this happen to anybody else? It's a brand new install with Visual Assist and QT integration as extensions. same configuration with VS2005 doesn't have any problems.

+1  A: 

You may try to reset Visual Studio Layouts by launching Visual Studio with the following command line:

devenv.exe /resetuserdata

More info here on MSDN

decasteljau
This will also reset every other settings I have what-so-ever...
shoosh
A: 

There is a menu item Window->Reset Window Layout.

Stefan Steinegger
Did you try it in debug mode, when you miss the window? There are different window settings for debugging and "normal" mode.
Stefan Steinegger
+1  A: 

The solution was to export the settings using "Tools->Import and Export Settings" Then, using the same wizard, to reset the settings to the default and then when re-importing the saved settings file uncheck the "Windows Layout" item in the import list.
This allowed me to save all the my previous settings and reset only the windows layout and not the breakpoints window is finally visible.

shoosh
A: 

[Debug] -> [Windows] -> [Breakpoints]

wjason
Did you even bother reading the question?
shoosh