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
Thanks
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