Please help me I am so confused.
I am working on an application and I need to make one of my forms as a parent and the rest of them should be child.
I tried this :
And I set the IsMDIContainer property to true but it is not child and parent yet.
What is wrong here?Do I have to change anything else too?
I am working on an application and I need to make one of my forms as a parent and the rest of them should be child.
I tried this :
Code:
Private Sub ViewTransactionToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ViewTransactionToolStripMenuItem.Click
Dim NewMDIChild As New frmTransaction
NewMDIChild.MdiParent = Me
frmTransaction.Show()
End Sub
What is wrong here?Do I have to change anything else too?
Comment