In the first MDI child, you can create an instance of the child MDI file secon, set the MdiParent of the second instance to the MdiParent of the first and show the child.
So, in the first child Mdi, the following code will show the second child MDI
Dim mdiChildForm As New MyMdiChild
mdiChildForm.MdiParent = Me.MdiParent
mdiChildForm.Show()
source
share