You don't need to use an autoexec macro; just set the form as the startup
form in the database's Startup properties (select Tools->Startup... ->
Display Form/Page). Set th form's TimerInterval property to 3000 (3
seconds) and create an event procedure for the Timer event:
Private Sub Form_Timer()
DoCmd.Close acForm, Me.Name
' optionally, open the main menu form or switchboard here.
End Sub
--
Dirk Goldgar, MS Access MVP
www.datagnostics.com
(to reply via e-mail, remove NOSPAM from address)
Quote:
> How can I create a form and use it for a splash screen? I'd like to place
it
> in my autoexec macro and display it for about 3 seconds and close. Any
> ideas?
> Scott