I have a field that I want to time stamp everytime there is a change. But I don't want to erase what was there. So I can't simply put Me.comment= date & time, I tried the below code but it breaks. How can I just append something witht the date and time?
Private Sub cmdSaveAll_Click()
'save all changes to current record
Me.comments = "Modified" & Date & " " & Time() & " /" & rsNAV!notes
Call SaveCurrentRecord
End Sub
Private Sub cmdSaveAll_Click()
'save all changes to current record
Me.comments = "Modified" & Date & " " & Time() & " /" & rsNAV!notes
Call SaveCurrentRecord
End Sub