Can you point me in the dircection of any examples or code that could help
me. Thanks,
> If you are asking, "can I concatenate the value of the current date and time
> into a text field's contents" (or memo field's contents), the answer is yes.
>
> > Can I add a date stamp (and or a User stamp) in a Text or Memo Field when
> > a
> > user updates my notes field (Memo)
Ken Snell [MVP] - 05 Apr 2005 03:08 GMT
In which context would you be doing this?
As an example, the following code step would add the current date and time
to a control on a form:
Me.ControlName.Value = Me.ControlName.Value & vbCrLf & _
Format(Now(), "dd mmm yyyy at hh:nn:ss ampm")

Signature
Ken Snell
<MS ACCESS MVP>
> Can you point me in the dircection of any examples or code that could
> help
[quoted text clipped - 9 lines]
>> > a
>> > user updates my notes field (Memo)
Ken Snell [MVP] - 05 Apr 2005 04:27 GMT
Note that the vbCrLf that I put in the code is not a requirement - I
included it only as a "separator" for the date/time stamp. Also, the Format
"format" ("dd mmm yyyy at hh:nn:ss ampm") that I provided can be changed to
other options.

Signature
Ken Snell
<MS ACCESS MVP>
> In which context would you be doing this?
>
[quoted text clipped - 17 lines]
>>> > a
>>> > user updates my notes field (Memo)