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..
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top