You mention that it updates when you close the form or move to the next
record, but it is updating on me even when I just move to another field in
the same record. I wouldn't mind if it updates on the next record or on a
close, but on each field is a little ridiculous. Am I not seeing something
correct here....?
Thanks,
Jason
> Jason,
>
[quoted text clipped - 27 lines]
> > Thanks,
> > Jason
Rick Brandt - 12 Feb 2008 00:10 GMT
> You mention that it updates when you close the form or move to the
> next record, but it is updating on me even when I just move to
> another field in the same record. I wouldn't mind if it updates on
> the next record or on a close, but on each field is a little
> ridiculous. Am I not seeing something correct here....?
Either a) what you think is happening is not happening or b) you have writteen
code or macros to make it happen.
By default, there is nothing about an Access form that would commit the record
every time you change fields. In fact on many forms that would cause an error
because some required fields hadn't been populated yet.

Signature
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
85ascMcLaren - 12 Feb 2008 01:10 GMT
You are probably correct. I think I have a combo box controlling the display
of the records, so when you choose another combo box field, it is like moving
to another record which automatically updates the record. What can I do to
stop the update if the user selects another selection from the combo list ?
Something in the Form's dirty property maybe ?
Thanks,
Jason
> > You mention that it updates when you close the form or move to the
> > next record, but it is updating on me even when I just move to
[quoted text clipped - 8 lines]
> every time you change fields. In fact on many forms that would cause an error
> because some required fields hadn't been populated yet.
Rick Brandt - 12 Feb 2008 12:23 GMT
> You are probably correct. I think I have a combo box controlling the
> display of the records, so when you choose another combo box field,
> it is like moving to another record which automatically updates the
> record. What can I do to stop the update if the user selects another
> selection from the combo list ? Something in the Form's dirty
> property maybe ?
Exactly how is it "controlling the display of records"? If you have added a
ComboBox that navigates the form then it is not "like moving to another
recoord". It IS moving to another record. The user should not mess with that
control until moving to a different record is what they want to have happen.
This is no different than entering some data and then pressing one of the
navigation buttons. The user simply has to know how the form works and do
things correctly.
Have you clearly indicated that the ComboBox is for navigating and not for data
entry? ComboBoxes used for navigating should not be bound to any field. Is
yours unbound?

Signature
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
Graham R Seach - 12 Feb 2008 01:07 GMT
Jason,
In addition to what Rick has said, if you have the primary key field visible
(and it is an Autonumber type), it may appear that the record has been saved
because you'll see the number that has been reserved for it. But as soon as
you start editing a record, a transaction is opened for it; the record will
not be saved until you close the form, move to another record, or move to a
subform.
Is it possible that the other "field" is actually sitting on a subform?
Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia
> You mention that it updates when you close the form or move to the next
> record, but it is updating on me even when I just move to another field in
[quoted text clipped - 40 lines]
>> > Thanks,
>> > Jason