Hi there,
Does anyone know how to use Immediate? could someone tell me how to use it?
thx b4
regards,
CuFoo
Printable View
Hi there,
Does anyone know how to use Immediate? could someone tell me how to use it?
thx b4
regards,
CuFoo
Do you mean the window called Immediate? If that's what you mean, it's used from Debug.Print, which is where the text is displayed
For example, type
Debug.Print "Test"
Then press Ctrl-G
The only Immediate I know of is the Immediate Window.
The best place to learn about it is to open VB's help file and search for it.
Immediate window is used to check some variable values or the run time behaviour of your program or at design time you can use it as a rought sheet for your calculation or for immediate results...It can have only one line statements...to open your immediate window, Press Ctrl + G at any time either at runtime or designtime
thanx a lot...