Hello everyone
In my app i'm using the counter and timer, But im stuck with resetting the counter
My code is:
If Timer2.Enabled = True Then
counter = counter + 1
Label1.Text = counter
If Label1.Text = "180" Then
Timer2.Enabled = false
Timer3.Enabled = true
End If
End If
End Sub
If Timer3.Enabled = true then
counter = counter + 1
Label2.Text = counter
If Label1.Text = "80" Then
Timer3.Enabled = False
end if
But the problem is: When the second counter starts, It does continue on the first counter after it's stops which is 180, But what i was aiming for is to second counter to start from 0
Any idea?
Thanks