timer
|
Private Sub Timer1_Timer ()
Dim intCount As Integer
i want the start code here.
intCount = CInt(lblTime.Caption) ' Fetch the count
If IntCount = 0 Then
me.Timer1.Enabled = False ' Turn off the timer when done
' then the end code here
Exit Sub
End If
lblTime.Caption = CStr(intCount) - 1 ' decrement & save
End Sub
When the timer ends how do i reset the caption. I tried lbltimer.caption = "30"
But it did not work
|
__________________
http://max-c-univ.hopto.org/
Some people spend an entire lifetime wondering if they made a difference. The Marines don't have that problem
|