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
-- Brendan Reynolds Access MVP
"StuJol" <StuJol[ at ]discussions.microsoft.com> wrote in message news:8F262355-8D3F-45F2-85E9-8CE1A084C2AE[ at ]microsoft.com...
[Quoted Text] > 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?
|