Oh cool - I didn't know about the CLS 2 option to just clear the VIEW PRINT area. Works great too. I always had a problem messing up the last line of a screen trying to clear a VIEW PRINT area, like in the example code below. Now with CLS 2 there is no problem.
Always something to learn. Thanks for another keyword of the day!
- Dav
Always something to learn. Thanks for another keyword of the day!
- Dav
Code: (Select All)
View Print 1 To 1
Do
Cls , Int(Rnd * 16) 'use this one, bottom line clears too
'Cls 2, Int(Rnd * 16) 'use this one, bottom line does not clear
_Display
Loop