I have a codes like this in timer of Form1 :
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Dim proceed As New Form2
proceed.Show()
End Sub
The problem is...the Form2 were continuosly shown. I just want to show the Form1 just once. Anyone can help me?
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Dim proceed As New Form2
proceed.Show()
End Sub
The problem is...the Form2 were continuosly shown. I just want to show the Form1 just once. Anyone can help me?