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'.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top