Time date stamp

  • Thread starter Thread starter MFancher
  • Start date Start date
M

MFancher

In a form... I would like for a time date stamp to be
placed in a text box at the exact time that a macro (enter
button)is ran.

TFTH
Mike
 
Mike

Add a SetValue action to your macro. Set the macro arguments like this...
Item: [NameOfYourTextbox]
Expression: Now()

Set the Format property of the textbox as required.

It is not clear whether you mean you want to keep these time stamp
values, or just display on the form. But if you need to keep them,
obviously the textbox needs to be bound appropriately to a field in a
table, or else some other method (e.g. Append Query) of storing these
values.
 
Back
Top