Show a form for eg 10 seconds

P

Poul Erik Jacobsen

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
 
R

Rick Brandt

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"
 
Top