The maximum time interval of the timer control is just over a minute. I need a time
interval longer than that. Anybody know how to do that?
Printable View
The maximum time interval of the timer control is just over a minute. I need a time
interval longer than that. Anybody know how to do that?
user Timer function..
It gives the time from 12 am in the morning..
first get when you start and add the
number of seconds and then you can stop
at that time..
This should do it:
WadeCode:Timer1_Timer()
Dim bMinutes as byte
bMinutes = bMinutes + 1
If bMinutes = 10 then
'--------------
YOUR FUNCTIONALITY HERE
'--------------
bMinutes = 0
End if