time and date stamp

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

Guest

Any one know how to build a macro to run a control button on a form to
populate a field on a from? kind of like a time clock?
 
Bry,

You can make a macro using the SetValue action, with the macro arguments
set the equivalent of this...
Item: [NameOfYourClockField]
Expression: Now()

Assign this macro on the Click event of the command button.
 
Back
Top