MDI Form

  • Thread starter Thread starter Rado
  • Start date Start date
R

Rado

Hello,
How Can I make MDI parent form.
I know make mdichild/ In form properties I change property to TRUE/ but How
can I make form which will ne chil for this form.
Thank You
 
Rado said:
Hello,
How Can I make MDI parent form.
I know make mdichild/ In form properties I change property to TRUE/
but How can I make form which will ne chil for this form.
Thank You

The MdiChild property is only available in VB6 and previous versions. To add
an Mdi parent, select "add Mdi form" in the project menu.

As this is a VB.NET group, please turn to one of the microsoft.public.vb.*
groups.


If you are using VB.NET, you can set the IsMdiContainer property to True. To
make a Form an Mdi child you can execute the following code in the
container/parent:

dim f as new form2
f.mdiparent = me
f.show

More about .Net Mdi:
http://msdn.microsoft.com/library/en-us/vbcon/html/vbconMDIApplications.asp
 
* "Rado said:
How Can I make MDI parent form.

If you are using VB6: "Project" -> "Add MDI form...".

This is a VB.NET language group.
I know make mdichild/ In form properties I change property to TRUE/ but How
can I make form which will ne chil for this form.

In VB.NET: Set the form's 'IsMdiContainer' property to 'True'.
 
Back
Top