saving data in a subform

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I save the data in a subform without closing the main form and without
moving to another record in the main form?
 
Jason said:
How do I save the data in a subform without closing the main form and
without
moving to another record in the main form?

Me.SubformControlName.Form.Dirty = False
 
Jason said:
How do I save the data in a subform without closing the main form and without
moving to another record in the main form?


Any changes to a bound subform's data will be saved
automatically when the focus moves to the main form.

The same is true when you navigate from one record to
another within the subform.

If you want to use a button (or some some other action
within the subform, then use:
Me.Dirty = False
 
Back
Top