main form oncurrent event

A

arm

Hello! Could anyone please help me as to how I can call the Oncurrent event
in the main form from a command button of a subform. Thank you in advance.
 
D

Douglas J. Steele

Call Me.Parent.Form_Current

In the parent form, you need to change the declaration of Form_Current from:

Private Sub Form_Current()

to

Public Sub Form_Current()
 
Top