watching variables

arage

Registered User.
Local time
Today, 00:21
Joined
Dec 30, 2000
Messages
537
Hi,
How can I watch the value of a variable in a standard module if it does not appear in the current form I am debugging? I think I’m asking for something to type in the debug immediate window, but I’ve never used that before & don’t know the correct syntax.
Thanks!
 
At any time during code execution, you can ask for the value of any variable.

Use the syntax:

Debug.Print Variable

This is very handy for checking concatenated strings, etc.

Duane Barker
 

Users who are viewing this thread

Back
Top Bottom