Hi,
need help please 
I have a problem in multi user enviroment, with finding and locking a record in database.
When one user finds, blocks and edit record ... another user in the same time can find the same record and overwrite it (User and Status values).
It is just like he didn't see the changes making by another user.
Each user have a copy of the front-end, back-end is on the shared disk.
Here is the code to find new record:
Code:
...
Set rs = db.OpenRecordset("tblTable1", dbOpenDynaset)
rs.FindFirst "[Status]='New' And [User] Is Null"
ws.BeginTrans
rs.LockEdits = True
rs.Edit
rs![User] = username
rs![Status] = "Assigned"
rs.Update
ws.CommitTrans
rs.Close
...
I don't know where I do mistake ...