timers

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

Guest

can a timer be set to see how much time has elapsed between now and when a
record was first opened.
 
When the form is opened, in the Open Event you can assign the current
timestamp to a global variable or custom property of the form.

e.g. gdtmStart = Now()

Later, when you need to do something, you can compare that value.

e.g. msgbox("Elapsed Time (in minutes) was: " & DateDiff("n", gdtmStart,
Now()), vbinformation)
 

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