Me said:
I have form with before and after update events. But in one case I
would like to
force save just one field prefereably. If that isn't possible I will
have to resort to saving everything. How can it be done?
Thank you,
-Me
You can't (at least not with a bound form). Well, before I say "can't" off
the top of my head I suppose you could place all changes so far into
variables, issue an undo on the form so the record is no longer dirty, use
an update query to save the one field into the underlying record, save the
PK into another variable, requery the form, use the stored PK to position
yourself back at the same record, then use the other variables to re-apply
all of the changes to the other fields.
Now, since nobody else has ever needed to do such a thing, can you explain
why you think you need to? Chances are your actual "need" can be satisfied
in a more conventional manner.