projecttoday
Programmer
I have a form with a subform on it that has a datasheet subform on that. The mainform has a close button with do-you-want-to-save logic behind it. If the user makes a change on the datasheet sub-subform I want the logic on the main form to recognize it. I tried using
Me.Parent.Parent.Dirty = True
in the on dirty event of the sub-subform and I got an error message. So my question is how can I make the main form know when something has been changed on the sub-subform?
Me.Parent.Parent.Dirty = True
in the on dirty event of the sub-subform and I got an error message. So my question is how can I make the main form know when something has been changed on the sub-subform?