I've added an OnClick event that adds the current date and time to a textbox, but, when the time gets added, it deletes everything that is already in the textbox. Is there a way to stop this, so that it just adds on to what is already in the textbox? i.e.
"hello there whats up
date/time
more stuff
date time
"
Here's the code:
Thanks!
"hello there whats up
date/time
more stuff
date time
"
Here's the code:
Code:
Private Sub Notes_Click()
Me.Notes = Now()
End Sub
Thanks!