How to clear the immediate window

  • Thread starter Thread starter TheBrenda
  • Start date Start date
T

TheBrenda

How can I clear the immediate window in the Visual Basic coding interface
(with key strokes) and how can I do it programmatically?

thanks
 
MZTools(Free) and FMS Total Visual CodeTools($) both have a button to do
this.

Personally, I press Ctrl+A(Select All) then Del (Delete).
 
I guess you can crosstrain using Ctrl+A Backspace, too. :P

btw, to code a window clear:
for i = 1 to 3000
debug.print
next

I think there's a newer fancy way, but this works.
 
Back
Top