Using timers in forms

S

Safe60

I'm sorry if my question has been alread asked in the past. How do I use a
timer in my form ? I don't see the timer control in Access 2003 toolbox . or
may be that timers are not allowed in forms ? I'm just a beginner in access
programming. Any hints ?

Sandro
 
B

Brendan Reynolds

See the form's Timer event, and TimerInterval property. The Timer event is
fired at the intervals you specify by setting the TimerInterval property (in
milliseconds). Just put whatever code you want in the Timer event.
 
Top