Show a form for eg 10 seconds

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

Guest

Is there a way to show a specific form for eg 10 seconds when starting the
database. After those 10 seconds I want it to change to the switchboard.
I think of something like a timeout
 
Poul said:
Is there a way to show a specific form for eg 10 seconds when
starting the database. After those 10 seconds I want it to change to
the switchboard. I think of something like a timeout

All forms have a Timer event where you can run code every 'n' milliseconds. You
simply need that code to close the form. Set the TimerInterval to 10000 and use
code...

DoCmd.Close acForm, Me.Name
DoCmd.OpenForm "Switchboard"
 
Back
Top