Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What exaclty is MdiForm?

Status
Not open for further replies.

SurvivorTiger

Programmer
Jul 9, 2002
265
0
0
US
What exaclty is Mdi form, how is it different than a normal form and does it have any special functionality?
Thanks AIM: survivertiger & Ye This Is Me
 
Hi Guy,

Actually MDI Form is almost have similar function as normal form, but the difference is this MDI actully act as a Parent form for any other MDI Child form. So if you defined 1 new form as MDI form and 1 other form as MDI Child, those MDI Child will be display under MDI Form window by the time you load those form.

And also only MDI Form have capabilities for Menu selection in the Menu Editor.

If you want to define 1 form as MDI Child form, you can update the MDI CHild property for the specified form to true value.

Hope this will help you.

Regards,

ACE888888
 
MDI stands for Multiple Document Interface. Think of Excel where you can open up multiple workbooks in the one Excel app. Now in VB sense most developers only still use one "Document" and just use the MDI functionality more as a window management tool.

 
Yes a normal form can be added as MDI provided it is specified as such.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top