Write Conflict message

Zaeed

Registered Annoyance
Local time
Tomorrow, 04:56
Joined
Dec 12, 2007
Messages
383
Hi, I keep getting a write conflict message when i try and modify a record..

can someone explain to me why this occurs
 
How are you trying to modify the record? Do you have one of these things perhaps:

1. Subform and Main form based on same table.

2. Bound form but using SQL to do the update.
 
Bound form with a SQL update.

the sql update gets called in the BeforeUpdate

am i doing it wrong?
 
Don't use SQL. The form will take care of the update. Validate in the form's Before Update event and then let it do its thing if it passes or use a Cancel = True if it fails. Or else you will have to make sure that the form has saved before running the SQL.
 

Users who are viewing this thread

Back
Top Bottom