splash screen
Visual Basic
3
Posts
3
Posters
0
Views
1
Watching
-
hi all.. i have a question, how a want to make a splash screen?? can someone help me.. areon25
Here is a sample http://www.windowsforms.net/samples/DEV354.zip
-
hi all.. i have a question, how a want to make a splash screen?? can someone help me.. areon25
Add new module to your project ( create spalshform, mainform) Code from Module Public frmnew as new Form Sub Main frmnew = New splashform frmnew.ShowDialog() frmnew = New mainform frmnew.ShowDialog() End Sub anymore in splashform you must you control called Timer Timer.Enabled=True Event for timer private Sub timer1_tick(...........) Close End Sub In your probject properties use stard up form Sub Main Regard Socheat ................