Calling a procedure based in another form

  • Thread starter Thread starter Jacinto
  • Start date Start date
J

Jacinto

I got two forms the parent and subform.

I have created a few action buttons on the subform.
now I would like to call this action buttons from a
procedure in the parent form.

Is there a way to get around this?
 
And public function in the sub-form call be run as a method of the form
like:


me.MySubFormControl.Form.MyRefresh


So, the above would run the function code MyRefresh in the sub-form.

You can also just call sub code like:

Call me.MySubFormControl.Form.MySubRoutine(parms 1 etc.)
 
Back
Top