Splash Screens 
Author Message
 Splash Screens

Hi All

I have created a Form called frmspash,
Can someone please tell me how to show the form for a few seconds then
remove it.

I can call it and it loads but always behind the current screen

Cheers Guys & Gals
You are all the Coolest

Jez



Mon, 13 Sep 2004 22:19:13 GMT  
 Splash Screens
Add a timer, which shows the main form when its interval is hit. Set the
splash screen to the startup form.

Max Bolingbroke


Quote:
> Hi All

> I have created a Form called frmspash,
> Can someone please tell me how to show the form for a few seconds then
> remove it.

> I can call it and it loads but always behind the current screen

> Cheers Guys & Gals
> You are all the Coolest

> Jez



Mon, 13 Sep 2004 22:29:42 GMT  
 Splash Screens
Private Sub Form_Load()
    frmSplash.Show

    'do some other stuff like loading graphics or whatever
    'or call a delay such as Sleep API

    Me.Show
    Unload frmSplash
End Sub
--
--I don't need to test my programs. I have an error-correcting modem.


Quote:
> Hi All

> I have created a Form called frmspash,
> Can someone please tell me how to show the form for a few seconds then
> remove it.

> I can call it and it loads but always behind the current screen

> Cheers Guys & Gals
> You are all the Coolest

> Jez



Mon, 13 Sep 2004 22:28:24 GMT  
 Splash Screens
Make the splash screen your startup screen and use the timer control
to hold it in place until it automatically loads your main form.  

Here's how:

1. Double click timer control
2. While timer gizmo is selected, use the properties menu to name it
something like tmrSplash and set the Interval to something like 3500
(for 3 and a half seconds, or some other value if you want it
displayed longer or shorter).  
3. Double click on the timer gizmo to open its timer event.  
4. Put instructions to unload the current form and then load the next
one.  

You will probably also want to change the mouse pointer to an
hourglass while the timer control is displaying the splash.  

Here's how:

1. Select the form that is current
2. In the properties box, change the "MousePointer" value to 11 -
Hourglas (Or one of the other values).  

On Thu, 28 Mar 2002 14:19:13 -0000, "Jez Walton"

Quote:

>Hi All

>I have created a Form called frmspash,
>Can someone please tell me how to show the form for a few seconds then
>remove it.

>I can call it and it loads but always behind the current screen

>Cheers Guys & Gals
>You are all the Coolest

>Jez

********************************************
My e-mail is:
dinwinseventysix at fetchsource.com
(Change "seventysix" to the number, the "at" to the at symbol, and "fetchsource" to "vegsource," then push it all together.  


Thu, 16 Sep 2004 02:32:34 GMT  
 Splash Screens
Jez:

To avoid using another control, place this in a module and set the project
properties startup object as Sub Main

Sub Main()
    frmSplash.Show
    pausetime = 3 'number of seconds you want
    Start = Timer 'this is not a timer control
    Do While Timer < Start + pausetime
        DoEvents
    Loop
    Unload frmSplash
    frmMain.show
End Sub

Regards,

Wayne O'Neil


Quote:
> Hi All

> I have created a Form called frmspash,
> Can someone please tell me how to show the form for a few seconds then
> remove it.

> I can call it and it loads but always behind the current screen

> Cheers Guys & Gals
> You are all the Coolest

> Jez



Sun, 19 Sep 2004 05:51:32 GMT  
 
 [ 5 post ] 

 Relevant Pages 

1. Splash Screen Delay] Note on splashes

2. Supress Access Splash Screen in Access 2000

3. Splash screen hints?

4. Access 2K splash screen

5. Splash screens

6. Splash screens in Access '97

7. Product registration info in splash screen

8. Suppress default splash screen

9. Splash screen A97

10. Use system colors on splash screen

11. Splash Screen In Excel XP Still Looking

12. splash screen in Excel XP

 

 
Powered by phpBB® Forum Software