G Guest Oct 9, 2007 #1 How do I save the data in a subform without closing the main form and without moving to another record in the main form?
How do I save the data in a subform without closing the main form and without moving to another record in the main form?
S Stuart McCall Oct 9, 2007 #2 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? Click to expand... 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? Click to expand... Me.SubformControlName.Form.Dirty = False
M Marshall Barton Oct 9, 2007 #3 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? Click to expand... 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
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? Click to expand... 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