SplashScreen

  • Thread starter Thread starter Yavuz Bogazci
  • Start date Start date
Y

Yavuz Bogazci

Hi,

where can i download a sample SplashScreen Project? I need one with showing
Information like License, Regged User, initialize Database ... (like the
Adobe Splashscreens) ... and then show the Main Form.

thanks
yavuz bogazci
 
This is real easy.

Create The Splash form Called Splash. Put a timer onit.
On timer tick event call me.dispose()

'Instantiate the splash form as a Main form class member.
Dim ASplash As Form = New Splash

In the main form load event call the splash form
ASplash.ShowDialog()
 
For more improvement you can use opacity on propery of form and combining
with timer.


dim i as integer = 1

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Timer1.Tick

i -= 0.1

frmSplash.Opacity=i

End Sub

It will preview splash hiding slowly.


Roji.
 
Back
Top