- Home
·
- Miscellaneous
·
- This Program Count Seconds In a Digital Numbers from 0 to INFINITE. I have it from 0 to 1000 but yo
This Program Count Seconds In a Digital Numbers from 0 to INFINITE. I have it from 0 to 1000 but yo
This Program Count Seconds In a Digital Numbers from 0 to INFINITE. I have it from 0 to 1000 but you can modify the program by adjusting the
API Declarations
cmdPause
cmdStartOver
cmdStartandContinue
label1
timer 1 & 2
Rate This Program Count Seconds In a Digital Numbers from 0 to INFINITE. I have it from 0 to 1000 but yo
(1(1 Vote))
Private Sub cmdStart_Click()
Timer1.Enabled = False
Timer2.Enabled = True
End Sub
Private Sub cmdPause_Click()
Timer2.Enabled = False
End Sub
Private Sub cmdStartOver_Click()
Label1.Caption = 0
Timer2.Enabled = False
End Sub
Private Sub cmdStartandContinue_Click()
Label1.Caption = 0
Timer1.Enabled = False
End Sub
Private Sub Form_Load()
End Sub
Private Sub Timer1_Timer()
Label1.Caption = 0
End Sub
Private Sub Timer2_Timer()
Label1.Caption = Val(Label1.Caption) + 1 & " Seconds."
End Sub
This Program Count Seconds In a Digital Numbers from 0 to INFINITE. I have it from 0 to 1000 but yo Comments
No comments yet — be the first to post one!
Post a Comment