splash screen

soulpiercing

Registered User.
Local time
Yesterday, 22:03
Joined
Jan 5, 2003
Messages
27
I am sure there is an easy way to do it - but anyway...

does anyone have a sample of code to set the display time for a form then automatically close it? I want to use it for a splash screen form I am using.

Otherwise - anyone got a good sample of a splash screen?

Thanks
 
Use the timer function to automatically close the splash screen

Set TimerInterval for the form to 3000 (for 3 seconds)

Private Sub Form_Timer()
DoCmd.Close acForm, Me.Name
End Sub

Also consider an option to close the window with the click of the mouse (for those impatient types).

Private Sub Form_Click()
DoCmd.Close acForm, Me.Name
End Sub
 
trying

I have both set up but only the click is working - the timer is not.... Any ideas?

I am also tring to play a .wav sound and have the code posted here entered - nothing seems to be working.....

Here it is with my main menu and some other things deleted out....
 
Here are the links to two samples I have recenlty posted that will help you with both of your problems...

Splash Screen

Sound in a Form

Searching this forum using the "keywords" for your quest will usually find the help you seek. ;)

As an example, I search for the keyword "splash" [without the quotes] and my user name "ghudson" and found the above two links.

HTH
 

Users who are viewing this thread

Back
Top Bottom