


Seconds.Text = Seconds.Text + 1
If Seconds.Text = 60 Then
Seconds.Text = 0
Minutes.Text = Minutes.Text + 1
End If
'Then this will be the code if the elapsed time is 2 hours.
If Seconds.Text = 0 and Minutes.Text = 120 Then
Timer1.Enabled = False
'Put Any codes here when the the it is already 2 hours.
End If