Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Threading.Thread.Sleep(2000)
Me.Hide()
Form2.Show()
End Sub
End Class
) Then add a timer, click the timer, and set the interval to however long you want the splash screen displayed, 1000 for an interval is one second so say if you want the splash screen displayed for 5 seconds, make the interval 5000
Now you want to double click on Form1, don't worry about any coding at all for your Form2. And now you want to add in:
Timer1.Enabled = True
Form2.Show()
Timer1.Enabled = False
Me.Hide()

) Then add a timer, click the timer, and set the interval to however long you want the splash screen displayed, 1000 for an interval is one second so say if you want the splash screen displayed for 5 seconds, make the interval 5000
Now you want to double click on Form1, don't worry about any coding at all for your Form2. And now you want to add in:
Timer1.Enabled = True
Form2.Show()
Timer1.Enabled = False
Me.Hide()

Me.Hide()
Form2.Show()
Timer1.Stop()

Copyright © 2026, NextGenUpdate.
All Rights Reserved.