W
Wim
I have two forms (single forms) that have the same table as their record
source. Form 2 is opened by pressing a command button on form 1 and it shows
the same record as form 1. In the On Deactivate event of both forms I have
If me.Dirty Then me.Dirty = False
Still, if I input some data on both forms, close form 2 and then try to
close form 1 I get an error message saying
Write conflict; this record has been changed by another user since you
started editing it...
Form 2 is pop-up, but not modal. Form 1 has several tabs. I want form 2 to
be visible from each of the tabs, that’s why I chose a pop-up form and not a
subform. The controls on both forms are linked to different fields in the
table, with the exception of one: the primary key, which is filled in
automatically. The db is single-user.
What am I doing wrong?
source. Form 2 is opened by pressing a command button on form 1 and it shows
the same record as form 1. In the On Deactivate event of both forms I have
If me.Dirty Then me.Dirty = False
Still, if I input some data on both forms, close form 2 and then try to
close form 1 I get an error message saying
Write conflict; this record has been changed by another user since you
started editing it...
Form 2 is pop-up, but not modal. Form 1 has several tabs. I want form 2 to
be visible from each of the tabs, that’s why I chose a pop-up form and not a
subform. The controls on both forms are linked to different fields in the
table, with the exception of one: the primary key, which is filled in
automatically. The db is single-user.
What am I doing wrong?