Home
Search
 
What's New
Index
Books
Links
Q & A
Newsletter
Banners
 
Feedback
Tip Jar
 
XML RSS Feed
 
 
 
 
 
 
 
 
Old Pages
 
Old Index
Site Map
What's New
 
Books
How To
Tips & Tricks
Tutorials
Stories
Performance
Essays
Links
Q & A
New in VB6
Free Stuff
Pictures
 
 
 
TitleMake an MDI application in VB .NET
KeywordsMDI, Multiple Document Interface, VB.NET
CategoriesVB.NET, Tips and Tricks, Controls
 
To make the MDI container form, make a form and set its IsMdiContainer property to True.

To make a menu list the MDI child forms, set its MdiList property to True.

Use code similar to the following to add a MDI child form to the MDI container.

 
Dim frm2 As New Form2
frm2.MdiParent = Me
frm2.Text = "Child " & Me.MdiChildren.GetLength(0)
frm2.Show()
 
 
Copyright © 1997-2003 Rocky Mountain Computer Consulting, Inc.   All rights reserved.
  Updated