Hello all,
I have an access form with a large textbox (Reason_for_Change) on it so that when a user clicks on it their username (captured at login) and the current data/time appears, appended to whatever is already in the text box. That much of the code I have figured out:
Reason_for_Change.Value = Reason_for_Change.Value & vbCrLf & vbCrLf & gstrUserID & ” ” & Now
But my problem is that it leaves the textbox (Reason_for_Change) with all of its text highlighted. I want it to add the login information and time to the end of the text that is already in the textbox and leave the cursor either at the end of the text or, even better, on the next line (without all the text in the textbox highlighted).
Any ideas?
Thanks in advance,
Amanda