
Originally Posted by
Gamemaster1494
So i can type things into it? And have it do things not in the code for the project?
More or less, yes. It does allow you to change public variable values and values local to the routine that the code stopped in. You can call public functions and private functions within the module that the code stopped in.
You can also use it within your code to see values. Example.
Code:
Dim X As Long, lSum As Long
For X = 1 to 10
lSum = lSum + Int(Rnd * 1000)
Debug.Print lSum
Next
' open immediate window (Ctrl+G) and see the results