display current date and time continuously in form entry

G

Guest

I want the current date and time displayed continuously during data entry on
form in access database
 
A

Al Campagna

Alex,
In the form properties, set the timer interval to 60000 (will trigger
every 60 seconds)
Format an unbound text control (ex. MyDateTime) for...
m/dd/yy @ hh:nn
Create an OnTimer Event Procedure...
Private Sub Form_Timer()
MyDateTime = Now
End Sub
 

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

Top