hello I want a timer in my Access database form using Visual Basic I have the code
dim i as integer=0
timer1= i
label1.Text = "Remaining time:" + CStr(2500 - j) + "seconds"
i = i + 1
If i > 5000 Then
Timer1.Enabled = False
commandbutton1.text=stop
End If
which works but I am confused on how to add more time while the time is counting down...such as a "add hour" button next to the "stop" button Also in the future I will be getting 1 hour instead of 5000 which is only 5 seconds..