so with some help from an experienced Access user on this site I was able to get the following code to work on my form:
Private Sub Enter_New_Note_Click()
Me.[Notes History] = Date & " | " & Me.Text138 & vbCrLf & Me.[Notes History]
Me.Text138 = Null
End Sub
code works, enters new line of text with the date in front. Only thing I would like to update is that the date shows leading zeros so all my comments line up in the box. Is there a way to do this or am I just SOL?
And please don't hate to hard on my coding, this is my first db ever and its a slow and fun learning process!!![]()
Thanks!