I would like some help to create a text scroll in the background of a form. I want to have it constanly loop without getting trapped in a traditional loop where the users computer gets trapped in an endless loop. Any ideas?
Printable View
I would like some help to create a text scroll in the background of a form. I want to have it constanly loop without getting trapped in a traditional loop where the users computer gets trapped in an endless loop. Any ideas?
try this:
Public Quit as boolean
Do while Quit = False
<text stuff>
DoEvents 'important!, so you can do other stuff
Loop
End
Then, whenever you want to quit
set the variable Quit to true