C
cmw
My application uses VB code to perform a variety of validations on data
entered on a form. There are edit, cancel and save buttons.
User encounters a "Write Conflict" message box on the save button. Can this
message box be suppressed? The set warnings flag does not work on this
message. I've tried changing the record locking setting on the options menu,
doesn't appear to have any impact.
Edit Button - when clicked, the system performs validations and writes data
to the table. The user may add or update additional data.
Cancel Button - executes DoCmd.DoMenuItem acFormBar, acEditMenu, acUndo, ,
acMenuVer70 (undoes the user entered data) then overlays data added on Edit
click
Save Button - executes DoCmd.DoMenuItem acFormBar, acRecordsMenu,
acSaveRecord, , acMenuVer70 which results in a message box "Write Conflict"
followed by an explanation and 2 choices, "Copy to Clipboard" or "Drop
Changes".
Thanks
entered on a form. There are edit, cancel and save buttons.
User encounters a "Write Conflict" message box on the save button. Can this
message box be suppressed? The set warnings flag does not work on this
message. I've tried changing the record locking setting on the options menu,
doesn't appear to have any impact.
Edit Button - when clicked, the system performs validations and writes data
to the table. The user may add or update additional data.
Cancel Button - executes DoCmd.DoMenuItem acFormBar, acEditMenu, acUndo, ,
acMenuVer70 (undoes the user entered data) then overlays data added on Edit
click
Save Button - executes DoCmd.DoMenuItem acFormBar, acRecordsMenu,
acSaveRecord, , acMenuVer70 which results in a message box "Write Conflict"
followed by an explanation and 2 choices, "Copy to Clipboard" or "Drop
Changes".
Thanks