PDA

Click to See Complete Forum and Search --> : Text Scroll


hlieu
Feb 23rd, 2000, 01:35 AM
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?

KENNNY
Feb 23rd, 2000, 03:22 AM
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