How to create a Splash screen for VB.net program

37,669

Solution 1

http://msdn.microsoft.com/en-us/library/bfkbc5a3(v=VS.100).aspx

Basically you set the form that you want to use as a splash screen in the program properties in Visual Studio. Very simple.

Solution 2

  1. Open Your vb.net
  2. Add new project
  3. Go to properties of your form
  4. Clear the Text
  5. Set the FormBorderStyle to None.
  6. Insert a background image.
  7. Set the background image to stretch.
  8. Add a ProgressBar, a Timer and a Label to your form.
  9. Go to properties of timer set the Interval into 50 and Enabled to true.
  10. Double click the Timer event.
  11. Populate This Code Inside The Private Sub Timer_Tick;

     ProgressBar1.Increment(1)
           If ProgressBar1.value = 100 Then
                  Me.hide() 
                  form2.Show()
           End IF
    
  12. Increment which mean to increase by 1.
  13. form2.show to show an another form if the ProgressBar was done processing.
  14. In a Label you must rename it whatever you want.
Share:
37,669
Kuzon
Author by

Kuzon

I am just a young guy interested in programming... and need help As many of us know, through life we can often be branded with nicknames. Mine was Kuzon, he is a character for the tv seires 'Avatar, The Last Airbender'. Kuzon was the second son of Fire Lord Izuma and Jiroh and the younger brother of Fire Lord Sozin. In his youth, he was also a good friend of Avatar Aang. Although he was appointed Commander of the first Fire Nation Armored Division by Sozin at age 18, and commanded these tanks during Sozin's assault on the Southern Air Temple, Kuzon could not tolerate his brother's plan to completely destroy the Air Nomad race. When he discovered what Sozin planned to do, Kuzon freed several Air Nomads from their cells in the camp. He was promptly discovered by Sozin, and barely escaped the battle with his life. Branded a traitor by his home country, Kuzon had nowhere to go but the community of refugee airbenders. He joined a group of airbenders who chose to covertly fight the Fire Nation and assist the Earth Kingdom and Water Tribe forces. Though he was once captured and brought back to the Fire Nation to face execution, he escaped with the help of his airbender compatriotsTaro and Kunchen, and spent the rest of his life helping to stem the tide of Fire Nation onslaught.

Updated on July 05, 2022

Comments

  • Kuzon
    Kuzon almost 2 years

    How do i create a Splash Screen for a vb.net program? I want to make a visual that will come up before the programs starts and after it finishes in this possible?

  • Kuzon
    Kuzon almost 13 years
    Work it out... Press Control+Shift+A (this add a new items) Then go to splash screen, and there you go! youtube.com/watch?v=swY1mkK-CrY, Youtube clip about it
  • Ranhiru Jude Cooray
    Ranhiru Jude Cooray almost 13 years
    @Kuzon: The URL is fixed now :)
  • Abd Domingos
    Abd Domingos almost 3 years
    Hey, great explanation, but you forget to add the Timer.start at the Form_Load