any reason that's wrong?Code:Private Sub Check3_Click()
If Check3.Value = True Then
Timer1.Enabled = True
ElseIf Check3.Value = False Then
Timer1.Enabled = False
End If
End Sub
it's not starting the timer.
Printable View
any reason that's wrong?Code:Private Sub Check3_Click()
If Check3.Value = True Then
Timer1.Enabled = True
ElseIf Check3.Value = False Then
Timer1.Enabled = False
End If
End Sub
it's not starting the timer.
Try this
orCode:Private Sub Check3_Click()
If Check3.Value = 1 Then
Timer1.Enabled = True
Else
Timer1.Enabled = False
End If
End Sub
Code:Private Sub Check3_Click()
If Check3.Value = vbChecked Then
Timer1.Enabled = True
Else
Timer1.Enabled = False
End If
End Sub
Or:Code:Private Sub Check3_Click()
Timer1.Enabled = Check3.Value = vbChecked
End Sub