Cosmos75
Registered User.
- Local time
- Yesterday, 21:11
- Joined
- Apr 22, 2002
- Messages
- 1,281
Firstly, is there a way to copy the contents of the VBA Immediate Window to a .txt file using VBA? This one doesn't sound possible to me but I thought I'd ask.
I did find this.
Secondly, is there a way to clear the contents of the VBA Immediate Window using VBA?
Just FYI, I ran this code to see how many lines I could get in the immediate window.
I got 199 lines. Guess that is the limit.
I did find this.
Secondly, is there a way to clear the contents of the VBA Immediate Window using VBA?
Just FYI, I ran this code to see how many lines I could get in the immediate window.
Code:
For i = 500 To 1 Step -1
Debug.Print i & " zzzzzzzzzzzzzz" 'I used more Zs' than this
Next i