Is there any way to capture an event of a child form? The child form is a separate form, thus not a subform. Something like this:
Code:
Private WithEvents child As Form
Private Sub child_OnUnload()
MsgBox "Child closing"
End Sub