Open form in MDI Parent

stustarz

Junior Contributor
Joined
Jan 10, 2003
Messages
246
Location
Earth
hi

I currently have a main MDI Parent form and three MDI Children. I have a command button on one of the MDI children that opens another MDI Child. How do I set this button to open the new form as a child of the MDI Parent?

Does this make sense?

I currently have this code

Visual Basic:
        Dim frmComp As New frmComp()
        frmComp.Show()
        varTransItem = txtCompetition.Text

Thanks
 
Back
Top