I have an MDI form called mother, and i want to be able to open a form from inside a child form and still have mother as the container form.

Obviously I cant use me (it is frmstatus, which is not the mdi container), so what can I do?

Code:
 
        Dim NewMDIChild As New frmIRC()
        'Set the Parent Form of the Child window.
        NewMDIChild.MdiParent = Me
        'Display the new form.
        NewMDIChild.Show()