MDI form help

  • Thread starter Thread starter Paulers
  • Start date Start date
P

Paulers

Hello

I am trying to launch a Form3 from a linked lable located on Form2. I
would like Form2 and Form3 to be children of form1 but I do not know
how to tell it that the parent is Form1.

Dim NewMDIChild As New Form3
NewMDIChild.MdiParent = Me (<- How fo I say Form1 instead of
ME??)
NewMDIChild.Show()


thanks!
 
Back
Top