Hi All,
I try to make count down timer but.
This following is my code but it just decrease one time and stop.
Dim TCount As Integer
Private Sub Form_Load()
TCount = 30
Label1.Caption = "30"
End Sub
Private Sub Timer1_Timer()
Label1.Caption = TCount - 1
If TCount = 0 Then
Msgbox "Time's UP!"
End If
End Sub
Please Help.
Thank you