views:

1322

answers:

7

It would seem the immediate window needs some jazzing up ala intellisense?

Anyone agree/disagree? Is this coming in VS2008/2010?

A: 

Not sure I follow. What are you calling "the immediate window"?

Dinah
the immediate window lets you inspect instance variables or execute code while you are debugging. lets say you want to see the fifth element in the array called "stuff", just type:"stuff[4]" in the immediate window, and you get the answer
Ctrl+G brings up the Immediate window. Or the Debug > Windows > Immediate menu.
Gordon Bell
Ah, wonderful to know. Thank you
Dinah
A: 

I've noticed that support for both it and the command window seems to come and go, but I'm not sure of what the trigger is.

Joel Coehoorn
+5  A: 

Ctrl + Space in immediate if you don't have the intellisense coming up automatically. Like Joel, intellisense seems to come in go in the immed window.

Ryan Lanciaux
when it's gone, ctrl+space doesn't seem to help much :(
Joel Coehoorn
Hmm weird, it seems to work for me =\
Ryan Lanciaux
In general, I found that Intellisense works in Debug mode, but not in a "non-debug" mode. (A little known fact is that the Immediate window is still usable and functions even when not in debug mode.) But, I agree with Joel it is inconsistent.
Ray Vega
+1  A: 

When debugging in Visual Studio 2008, you can get intellisense to pop up by pressing ctrl+space. Also, it will pop up in a quick watch window with the same keystroke. Very handy.

Mario
A: 

The question of how intellisense displays in the immediate window is highly dependent upon the language you are using. Which language are you using and what do you find disfunctional about it?

JaredPar
+3  A: 

I'd be happy if the intellisense reliably worked in my editor window...

Marc Bernier
Adding to my own complaint... Here it is 1.5 years after this complaint and intellisense is still not working reliably!!! But no fear, I'm sure Microsoft will get it right in the next version...
Marc Bernier
A: 

I am in VS2005 with C#, I finally get it up with Ctrl-Space but oddly i have to try it a few times when i first click in there. It will work fine for a while as long as I stay in that window.

But If i click into the problems or the find window, and back to it: then it doesn't really come up again until I evaluate one line and THEN hit Ctrl-Space.