time and date stamp

B

BRy

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?
 
S

Steve Schapel

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.
 
Top