SplashScreen

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
 
O

One Handed Man [ OHM ]

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()
 
D

DenBaguse MasRodjie

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top