I am having some headaches on how to insert a date into a memo box in the 1st position of the box AFTER new notes have been added. also, I don't want to delete any existng notes already entered. I have looked high and low and still can't locate a fix for my situation. The only code that works for me is populating the current date but not in the right postion. The whole purpose of this is to maintain a running log of notes which are separated by dates. Any help with this challenge would be much appreciated. Thanks a million.
Private Sub LGCMTS_GotFocus()
[LGCMTS].SelStart = 0
End Sub
Private Sub LGCMTS_AfterUpdate()
[LGCMTS] = [LGCMTS] & Now() & "> "
End Sub