IsMdiContainer
property of the parent form to True
in the designer. You can then host a child form inside it by assigning the parent form to the child form's MdiParent
property, e.g.Dim childForm As New Form2
childForm.MdiParent = Me
childForm.Show()
I've seen this question answered elsewhere but I'll answer it here for completeness.