Sep 10, 2007 #1 dpimental Programmer Jul 23, 2002 535 US All, I have a main form with a few functions / procdures. I want to call a function on the main form, from the subform_afterupdate event. How do you call a function or sub procedure in a main form from a subform? David Pimental (US, Oh)
All, I have a main form with a few functions / procdures. I want to call a function on the main form, from the subform_afterupdate event. How do you call a function or sub procedure in a main form from a subform? David Pimental (US, Oh)
Sep 10, 2007 #2 Remou Technical User Sep 30, 2002 13,030 BE You can refer to the form, then the function, as long as it is not private: Call Forms.frmForm.TheFunction Upvote 0 Downvote
You can refer to the form, then the function, as long as it is not private: Call Forms.frmForm.TheFunction