Navyguy
Registered User.
- Local time
- Today, 15:48
- Joined
- Jan 21, 2004
- Messages
- 194
I am playing around with splash screens and seem to missing something.
The splash screen opens great and so does the "Main Form" but when the "Main Form" opens the Splash stays on top and open. Also if I close the "Main Form" it opens up again after 5 seconds, like It would if the splash was just opened.
I searched around the forum and did not see anything specific to this example.
Here is the code that I am using.
Option Compare Database
Option Explicit
Private Sub Form_Timer()
DoCmd.Close acForm, "Frm-Splash"
DoCmd.OpenForm "Frm-Main Form"
End Sub
Thanks for your assistance
Navyguy
The splash screen opens great and so does the "Main Form" but when the "Main Form" opens the Splash stays on top and open. Also if I close the "Main Form" it opens up again after 5 seconds, like It would if the splash was just opened.
I searched around the forum and did not see anything specific to this example.
Here is the code that I am using.
Option Compare Database
Option Explicit
Private Sub Form_Timer()
DoCmd.Close acForm, "Frm-Splash"
DoCmd.OpenForm "Frm-Main Form"
End Sub
Thanks for your assistance
Navyguy