what does that do?
Printable View
what does that do?
ir means that it prints out a value of an interger, or string, it is used if your program isn't working corectly to see where your error is
Prints "Hello World" in the Immediate Window, if you dont see an immediate window hit Ctrl + G.Code:Debug.Print "Hello World"
It's a very good debug board which comes to use for when you want to print little statements out:
That's basically it, it's mainly to check to make sure your code is going well.Code:For i = 0 to 100
Debug.Print i
Next i
If you're in Break Mode, then you can also use the Immediate Window to enter commands.
thanks