Form Timer

O

Outatym

I am needing to have a form(image) display for 5 seconds as soon as the
database loads, then load another form that the users can input data into.
Any way to do this?
 
T

TonyT

You can set the TimerInterval on the form on_load event to 5000 (millisecs =
5 secs)Me.imerInterval = 5000, then on the forms on_timer event set the code
to close the *image* form and open the other form.

TonyT..
 
O

Outatym

Spectacular!!! Worked like a charm!

THANKS!!!

TonyT said:
You can set the TimerInterval on the form on_load event to 5000 (millisecs =
5 secs)Me.imerInterval = 5000, then on the forms on_timer event set the code
to close the *image* form and open the other form.

TonyT..
 
Top