On Timer Event

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top