On Timer Event

S

StuJol

is there a way, using access 2003 to view the timer value. for example if i
use 100,000 for the timer interval, can i have a rundown timer so i know when
the next timer event will occur?
 
B

Brendan Reynolds

You could set your TimerInterval to 1 second, then do something like this in
the Timer event procedure ...

If Me.txtTimerCount = 1 Then
Me.txtTimerCount = 100
'Do whatever you currently do in the timer event procedure,
'i.e. the thing that you want to do every 100 seconds.
Else
Me.txtTimerCount = Me.txtTimerCount - 1
End If
 
Top