Date and Time

  • Thread starter Thread starter Guest
  • Start date Start date
This is a very common question. Do a search and read the previous posts on
the topic. Look for the keywords "timestamp" or "audit trail".
 
This is a very common question. Do a search and read the previous posts on
the topic. Look for the keywords "timestamp" or "audit trail".
 
Open the table in design view. Add a Date/Time field called dtmModDate, or
whatever you want to call it...

In the form that is used to edit the record you can add the following in the
AfterUpdate event:

dtmModDate = Now()
 
Open the table in design view. Add a Date/Time field called dtmModDate, or
whatever you want to call it...

In the form that is used to edit the record you can add the following in the
AfterUpdate event:

dtmModDate = Now()
 
Back
Top