-
Timer Timing...
Hi guys,
Ok, so I'm working with timers. I just need to confirm a few things. Right now I would like to ask what happens if the statements insider the Timer1_Timer() took more time to execute than the 'Interval' property of the timer.
For example Timer1 has an Interval = 1000 (1 second), then the Timer1_Timer() Sub, since it queried from the database, took 2 seconds to execute. What happens to the execution of Timer1_Timer().
Thank you for the help
-
Re: Timer Timing...
The timer code would continue to execute until it finished. Look in my signature for help with timers.
-
Re: Timer Timing...
Randem is correct. Unless you do something silly like have a Doevents inside the timer, it will not trigger while executing code. Any timer events that should have fired are skipped.