Form Timer

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
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..
 
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..
 
Back
Top