IsMdiContainer

  • Thread starter Thread starter Ken Humphreys
  • Start date Start date
K

Ken Humphreys

Hi There,
I have created a new Windows form with the IsMdiContainer set to True and
the MainMenu Windows Component.
When I select one of the Menu options from the MainMenu Windows Component I
would like to open another form within the IsMdiContainer Form above.

How can I do this?

Thanks In Advance,
Kevin Humphreys.
 
Ken Humphreys said:
I have created a new Windows form with the IsMdiContainer set to True and
the MainMenu Windows Component.
When I select one of the Menu options from the MainMenu Windows Component
I would like to open another form within the IsMdiContainer Form above.

\\\
Dim f As New Form1()
f.MdiParent = Me
f.Show()
///
 
Ken Humphreys escribió:
Hi There,
I have created a new Windows form with the IsMdiContainer set to True and
the MainMenu Windows Component.
When I select one of the Menu options from the MainMenu Windows Component I
would like to open another form within the IsMdiContainer Form above.

How can I do this?

Thanks In Advance,
Kevin Humphreys.


you can do this

dim f as new form2
f.mdiparent=me
f.show()
 
Back
Top