Debug.Print..........?

MGumbrell

Registered User.
Local time
Today, 23:26
Joined
Apr 22, 2005
Messages
129
I would be grateful if someone could explain what Debug.Print ............. is used for and where.

I can see it in code but cannot work out what it is used for.

Regards, Matt
 
It prints a message to the immediate window in the Visual Basic editor.

It is used for troubleshooting.
 
Debug.print will print what is been assigned to a selected variable to the immediate window of your project. It is a way of troubleshooting your code in regards to what you think has been assigned to a variable to what actually has been assigned. It does not effect any of te actions being performed.
 

Users who are viewing this thread

Back
Top Bottom