Hi
Ar eyou saying that using a single user database on one PC you are getting a write conflict?
If yes:
Do you have two (or more) instances of the db open at one time
Are you doing something like updating a bound form (via the controls) and aklso updating the table(s) on which the bound form is based, either via SQL or via recordset .Update
A write conflict is caused when user A read a record with the intention of updating it, applies some chnages, then finds that when they come to write it back to disk another user has updated the same record in the period of time between teh first user reading it, and being ready to write it back.
Keep in mind that unless you have specifically set row level locking, then 'record' means a databse page (4096 bytes I think) ratehr than the single row you might expect.
You can also apply pessimistic locking, which locks the row on red rather on write, but this will impact concurency
Regards
Ken Reay
Freelance Solutions Developer
Boldon Information Systems Ltd
Website needs upgrading, but for now -
UK