Splash Screens 
Author Message
 Splash Screens

Quote:

>I saw some messages here in this forum quite some time ago about adding
>Splash Screens to a VB app. but can't find them any more.
>Could someone please give me some pointers, tips, tricks, how-to's, etc.
>on adding a Splash Screen to my application.

A splash screen is only necessary if you are loading quite a bit at
the start.  All you have to do is create a form with the splashscreen
info on it and then add this code...

    SplashScreen.Show
    BringWindowToTop SplashScreen.hwnd
    RetVal = SetSysModalWindow(SplashScreen.hwnd)

        ******  add all of your loading code (i.e. database opens, form
loads...    

    Unload SplashScreen

Lance



Mon, 17 Aug 1998 03:00:00 GMT  
 Splash Screens

Quote:

>I saw some messages here in this forum quite some time ago about adding
>Splash Screens to a VB app. but can't find them any more.
>Could someone please give me some pointers, tips, tricks, how-to's, etc.
>on adding a Splash Screen to my application.

This may be too simplistic, but create a form with the following
properties:
        Border Style:   1 - Fixed Single
        Control Box:    False
        Max Button:     False
        Min Button:     False
        Picture:                some bitmap
and then Show this form while your app does any time-consuming startup
processing.  

You may also want to add code to the center splash form on the screen.
        Top = (Screen.Height / 2) - (Height / 2)
        Left = (Screen.Width / 2) - (Width / 2)



Tue, 18 Aug 1998 03:00:00 GMT  
 
 [ 2 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