Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Memo fields

Status
Not open for further replies.

legendv

Technical User
Apr 10, 2002
32
0
0
US
I want to add info to a memo field without being able to change info that was already added, and with a date/time stamp. Is that possible?
 
Try something lik this:

MemoField = MemoField & "New date/time is: " & Now()

Or if you want a line break, try something like this:

MemoField = MemoField & vbCrLf & "New date/time is: " & Now()

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top