Hey Im just wondering if anyone could help me with this timer project Im working on...
The purpose of this project is to keep tract of the time a classroom of students is working, not working and then total time of the class.
So far I have only the seconds countdown to the non working class timer but dont know how to make the minutes timer start when the seconds timer gets to 59 sec. my code for that is
Private Sub btnClassNotWorking_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnClassNotWorking.Click
SS1 = Seconds
MM1 = Minutes
HH1 = Hours
If x > 0 Then
x = 59
CMR.Enabled = True
Else
MessageBox.Show("Times Up")
End If
Dim MM1 As Integer
''''' Dim SS1 As Integer
'''''''If SS1 = 0 Then
''''' 'MM1 = 59
''''' 'CMR.Enabled = True
' '''Else
'''''MessageBox.Show("Times UP")
'''''End If
End Sub
If anyone has any ideas Id love the help, Thanks......