B
Brian
I have a continuous form containing a text box bound to a field that
represents the record sequence, and when the user wants to manually rearrange
the records, he simply enters the sequence number in the box (this is a
delivery stop sequence for a home-delivery business).
I simply run a query in Form_BeforeUpdate to renumber the sequence field for
all affected records. I have taken great care to ensure that the current
record is excluded by the WHERE clause of my SQL statement.
I have record-locking set to Edited Record as both the DB default & on the
form, but I am getting lock violations.
Is it because I am trying to do it in Before_Update? Even so, why should I
get lock violations on records other than the current record?
represents the record sequence, and when the user wants to manually rearrange
the records, he simply enters the sequence number in the box (this is a
delivery stop sequence for a home-delivery business).
I simply run a query in Form_BeforeUpdate to renumber the sequence field for
all affected records. I have taken great care to ensure that the current
record is excluded by the WHERE clause of my SQL statement.
I have record-locking set to Edited Record as both the DB default & on the
form, but I am getting lock violations.
Is it because I am trying to do it in Before_Update? Even so, why should I
get lock violations on records other than the current record?