Milad Roohi
New member
- Local time
- Tomorrow, 02:28
- Joined
- May 27, 2016
- Messages
- 5
Hi, have nice day
I'm new in access and have problem with write conflict error, I use this code for update my table :
cmd = "UPDATE TblStudent SET Student_Image = '" + fileName + "' WHERE Student_ID_ = " + Student_ID
DoCmd.RunSQL cmd
But everytime i face with this error :
This record has been changed by another user since you started editing it. If you save the record, you will overwrite the changes the other user made.
Copying the changes to the clipboard will let you look at the values the other user entered, and then paste your changes back in if you decide to make changes.
Then, you can click one of the following three buttons:
1.Save Record
2.Copy To Clipboard
3.Drop Changes
what can i do to not see this and run my sql code correctly??
thanks
I'm new in access and have problem with write conflict error, I use this code for update my table :
cmd = "UPDATE TblStudent SET Student_Image = '" + fileName + "' WHERE Student_ID_ = " + Student_ID
DoCmd.RunSQL cmd
But everytime i face with this error :
This record has been changed by another user since you started editing it. If you save the record, you will overwrite the changes the other user made.
Copying the changes to the clipboard will let you look at the values the other user entered, and then paste your changes back in if you decide to make changes.
Then, you can click one of the following three buttons:
1.Save Record
2.Copy To Clipboard
3.Drop Changes
what can i do to not see this and run my sql code correctly??
thanks