Hi Lanc1988,
Try This,
Set the Timers Interval Property to 1000 milliseconds.
Set the Timers Enabled Property to False.
Declare a Variable as,
Dim iMaxTime as Integer = 1200.
Dim iMinutes as Integer = 20.
In Start Buttons Click add Follwing Code:
Timer1.Enabled = True
In Stop Buttons Click add the following Code:
Timer1.Enabled = False
In Reset Buttons Click add the following Code:
iMaxTime = 1200
iMinutes = 20
Label1.Text = ""
In the Timers Event which will fire every 1 second add folowing code,
If iMaxTime>0 then
If IMaxTime Mod 60 = 0 then
Label1.Text = IMinutes
iMinutes-=1
End If
End IF
iMaxTime-=1
HOPE THIS WORKS OUT TRY IT!!!
GetYourAnswers