What is the syntax for calling a sub procedure on a subform from that subform’s parent form. I tried both of these and none work.
Forms(Me.Name).Controls("SubChkds").Form.getlast10
Forms("subChkDS").getlast10
The name of the main from is frmChecking (I’m using me.name rather than the form name). The name of the subfrom is SubChkds. The name of the public procedure that I’m trying to call is GetLast10.
Any help would be appreciated
Forms(Me.Name).Controls("SubChkds").Form.getlast10
Forms("subChkDS").getlast10
The name of the main from is frmChecking (I’m using me.name rather than the form name). The name of the subfrom is SubChkds. The name of the public procedure that I’m trying to call is GetLast10.
Any help would be appreciated