I have two System.Windows.Forms.Timer with different interval having code as below
Private Sub myTimer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles myTimer1.Tick
myTimer1.Enabled = False
'Code
myTimer1.Enabled = True
End Sub
Private Sub myTimer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles myTimer2.Tick
myTimer2.Enabled = False
'code
myTimer2.Enabled = True
End Sub
but some timer2 not start wroking until timer1 not get finished i want them to run parallel without waiting for each other to finish