I have no way of knowing where your code is being executed. Is any of the code inside the timer Tick event handlers? For what you are trying to do I would put the following code in the Timer2_Tick handler
counter += 1
Label1.Text = counter
If counter = 180 Then
counter = 0
Timer2.Enabled = false
Timer3.Enabled = true
End If
then in Timer3_Click I would put
counter += 1
label2.Text = counter
If counter = 80 Then
Timer3.Enabled = False
End If
Reverend Jim
Carpe per diem
3,595 posts since Aug 2010
Reputation Points: 561
Solved Threads: 446
Skill Endorsements: 32
Any time. I'll mark this as solved.
Reverend Jim
Carpe per diem
3,595 posts since Aug 2010
Reputation Points: 561
Solved Threads: 446
Skill Endorsements: 32
Question Answered as of 6 Months Ago by
Reverend Jim