Obie
08-27-2000, 06:37 PM
I am a newbie and am trying to get my splash screen at the begggining of the program going. Ive checked out the help file in VB 6 and pretty much followed the supplied code with a few modification
Private Sub Start()
' Show the splash screen.
frmSplash.Show
' Add your startup procedures here.
…
' Show the main form and unload the splash screen.
frmStart.Show
Unload frmSplash
End Sub
Where frmSplash is the Splash screena and frmStart is meant to be the next screen.
Unfortunately when I run the program the splash screen appears and sits there forever.
Any ideas???
Obie
Private Sub Start()
' Show the splash screen.
frmSplash.Show
' Add your startup procedures here.
…
' Show the main form and unload the splash screen.
frmStart.Show
Unload frmSplash
End Sub
Where frmSplash is the Splash screena and frmStart is meant to be the next screen.
Unfortunately when I run the program the splash screen appears and sits there forever.
Any ideas???
Obie