I have windows.forms.t imer on my form and this code
Private Sub Timer1_Tick(ByV al sender As System.Object, ByVal e As
System.EventArg s) Handles Timer1.Tick
Timer1.Stop()
Recieve.Start()
End Sub
Receive is Thread. How from thread to start timer again. In my thread I have
timer1.start but that won't do it
Any help
thx
Private Sub Timer1_Tick(ByV al sender As System.Object, ByVal e As
System.EventArg s) Handles Timer1.Tick
Timer1.Stop()
Recieve.Start()
End Sub
Receive is Thread. How from thread to start timer again. In my thread I have
timer1.start but that won't do it
Any help
thx
Comment