Hi,
I've got a database with multiple users. When they add a new row (using a form) it replaces another row that was just added by someone else. Very strange??
I use the following;
Set db = CurrentDb()
Set trs = db.OpenRecordset("FTE")
..... some code
trs.AddNew
trs.Fields("Source") = Combo_Source.Value
...... some more code
trs.Update
Set db = Nothing
Set trs = Nothing
How can I solve that problem?
Lenny
I've got a database with multiple users. When they add a new row (using a form) it replaces another row that was just added by someone else. Very strange??
I use the following;
Set db = CurrentDb()
Set trs = db.OpenRecordset("FTE")
..... some code
trs.AddNew
trs.Fields("Source") = Combo_Source.Value
...... some more code
trs.Update
Set db = Nothing
Set trs = Nothing
How can I solve that problem?
Lenny