Save record in different form

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
 
R

Rick Brandt

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
 
Top