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