Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to show Call Stack, Immediates, and other hidden windows in Visual Studio

I closed the call stack and other default windows in VS2008. How do I get them back? I expected to find a command under the View menu, or atleast under the View\Other Windows menu. Nothing. Thanks.

like image 313
Bobby Ortiz Avatar asked Oct 22 '09 13:10

Bobby Ortiz


People also ask

How can I see the call stack code in Visual Studio?

To display the call stack window you must first start your code in debug mode. Either start your application using the Step Into command or use a breakpoint to halt execution. You can then show the window by opening the "Debug" menu, expanding its "Windows" submenu and selecting "Call Stack".

How do I see all threads in Visual Studio?

While Visual Studio is in debug mode, select the Debug menu, point to Windows, and then select Threads.

How do I view a watch window in Visual Studio?

The Watch Window. The Watch Window allows you to see value of variables and expressions while debugging. It's kind of like the DataTip you get when hovering over a variable, except that you can write any expression you want. It's available from Debug | Windows | Watch | Watch 1 or Ctrl + Alt + W + 1.

How do I view execution steps in Visual Studio?

Press Shift + F11 (or Debug > Step Out). This command resumes app execution (and advances the debugger) until the current function returns.


2 Answers

Try the Debug menu, then Windows.

like image 62
Sebastiaan M Avatar answered Sep 20 '22 18:09

Sebastiaan M


Some windows may only be available when you are in debug mode. Try running your project and then hit the Debug->Windows menu. You should see Call Stack, Immediate, etc.

like image 41
C-Pound Guru Avatar answered Sep 19 '22 18:09

C-Pound Guru