T
tbl
Is there a way to trigger the "On Current" event of a
subform from the parent form's "OnActivate" event?
subform from the parent form's "OnActivate" event?
tbl said:Is there a way to trigger the "On Current" event of a
subform from the parent form's "OnActivate" event?
Just call the subform's Current event (after making it
Public):
Me.subformcontrol.Form_Current
Why do you need to use the Activate event? It is a rather
unusual event to use for most any purpose.