how can I create a running timer in a form field

  • Thread starter Thread starter 10x
  • Start date Start date
1

10x

I am trying to create a running timer in a form field for a downtime report,
I need to know how to get it to update or show the running timer
 
I am trying to create a running timer in a form field for a downtime report,
I need to know how to get it to update or show the running timer

this is a forms/forms programming question, really. Assuming you have
a calculated control, txtCurrentDowntime and another date/time field,
txtTimeStampDown, you could use DateDiff to get the difference in
times in any increment you want, Then you'd have to use the OnTimer
event of the form to requery the control so that the value updated.
 
Back
Top