Save record in different form

  • Thread starter Thread starter David Chase
  • Start date Start date
D

David Chase

I have a parent/subform form which opens a 2nd form. That 2nd form sends
changes back to the 1st forms subform. How can I issue a save to the record
in the subform from the 2nd form? Thank you.

David
 
David Chase said:
I have a parent/subform form which opens a 2nd form. That 2nd form sends
changes back to the 1st forms subform. How can I issue a save to the record
in the subform from the 2nd form? Thank you.

Try. . .

Forms!NameOfMainForm!NameOfSubformControl.Form.Dirty = False
 
Back
Top