Tutorials Navigation

Tutorials :: New :: Popular :: Top Rated

Tutorials: 18,326 Categories: 12

Total Tutorial Views: 41,413,334

[VB.NET] How to Make a Splash Screen

Tutorial Name: [VB.NET] How to Make a Splash Screen  

Category: PC Tutorials

Submitted By: Maj

Date Added:

Comments: 2

Views: 2,793

Related Forum: PC Building Forum

Share:

Ever wanted to have a cool splash/loading screen for your app, but didn't know how to do it? Well here's how




Step 1. Make a form and set the border style to none, now add a picture box to it, now import the image you want to have as your splash screen into the picture box. Like below

[ Register or Signin to view external links. ]


Step 2. Add a timer with an interval of what you want! (1000 = 1second)

Step 3. Double click on your form and add the following code

Timer1.start


It should look something like this

[ Register or Signin to view external links. ]


Step 4. Resize the form to just fit the picture box and double click timer1

Step 5. Now add the following code

Form2.show (or whatever form your main app is)
Me.Hide
Timer1.Stop


It should now look something like the below

[ Register or Signin to view external links. ]


Step 6. Debug your application and test it out! You should now have a working splash screen for your app!!




Just like that you can make your application look more professional


Ratings

Current rating: 2.00 by 3 users
Please take one second and rate this tutorial...

Not a Chance
1
2
3
4
5
6
7
8
9
10
Absolutely

Comments

"[VB.NET] How to Make a Splash Screen" :: Login/Create an Account :: 2 comments

If you would like to post a comment please signin to your account or register for an account.

MickersPosted:

So many good tutorials from you man, keep it up.

ZydrinPosted:

Great tutorial as always Maj. :)