Command Window

  • Thread starter Thread starter Paul Ilacqua
  • Start date Start date
P

Paul Ilacqua

I'm converting to VB.Net from VB6. In VB6 you just brought up the Immediate
windo to do some date math etc. When I bring up a command window in vb.net I
get a window with a caret >
When I type like >?DateTime.now I get an error message. At one time my
window worked ok and I used to be able to test with intellisense capability.
How can I get that back?

Thanks
Paul
 
By using the Immediate Window, just like in VB 6. The Command Window allows
you to send commands the the underlying Studio engine, so you can save
files, open files, etc.

-Chris
 
In VS.NET 2003:

Debug->Windows->Immediate

The same window changes to what you have via
View->Other Windows->Command Window

( crazy I know )

Cheers
Daniel
 
Back
Top