Clearing the Immediate Window

  • Thread starter Thread starter Rob Diamant
  • Start date Start date
R

Rob Diamant

Is there a way to programmatically clear the Immediate Window?
I know I can just highlight everything and delete it, but I am lazy and want
to have my code do it for me.

TIA

Rob
 
Rob Diamant said:
Is there a way to programmatically clear the Immediate Window?
I know I can just highlight everything and delete it, but I am lazy
and want to have my code do it for me.

TIA

Rob

The following is a link to an Excel NG, with a way to do that in,
Excel. I once tried it in Access, and I think I made it work, but I'd
rather either delete manually, or use MZTools.

http://groups.google.com/group/micr...ogramming/browse_frm/thread/e738f8943a2d0fde/

Else, I think you could just fire off something like this

Debug.Print String(256, vbCrLf)
 
Back
Top