views:

62

answers:

3

How do you get this window in VisualStudio 2008:

alt text

I am especially looking at the "View" menu. It's just not there. I have a non-Express version of VisualStudio 2008. I found the above screenshot via google..that's the window I need. Any way to make that window open?

+7  A: 

While debugging, try:

Debug > Windows > Threads

Or Control+D, T (on my machine at least)

Jay Riggs
while debugging
henchman
+1 to @henchman
Peter Lillevold
@henchman - thanks for your addition!
Jay Riggs
+2  A: 

Debug -> Windows -> Threads

All Debugger windows and functions are hidden under the Debug menu. This is probably to reduce confusion, but clearly had the opposite affect for you.

Matthew Ferreira
Mine is a copy of Jay's. His answer had not appeared while I was typing mine. Vote for his.
Matthew Ferreira
+1 for being so noble.
FrustratedWithFormsDesigner
A: 

First, you need to be executing the application, then open the Debug menu, select Windows then Threads.

Peter Lillevold