2
Answers

another problem with splash screens

tdpowell23

tdpowell23

19y
2.2k
1
i am using the code below and the problem is is that when it open the next form it doesnt close the splash screen any ideas why??? Private Sub splashform_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load splashtimer.Start() End Sub Public Sub splashtimer_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles splashtimer.Tick splashtimer.Stop() Dim raceform As New RaceTimesform raceform.ShowDialog() Me.Close() End Sub
Answers (2)