I run the following code when the user executes a certain event (it records the time an email was sent):
All is ok until I exit the form. I then get told that the record has changed by another user and would I like to discard or save etc. I'm sure I've used this before without such a message. All I want to do is overwrite whatever was the previous timestamp!
Code:
SQL = "UPDATE tbl_RMAs SET [FourHour] = '" & Now() & "' WHERE [RMANo] = '" & Me.RMANo.Value & "';"
CurrentDb.Execute SQL