Multiple Document Interfaces in Visual Basic

Posted on ASP Free See other posts from ASP Free
Published on Wed, 26 Oct 2011 12:00:01 -0400 Indexed on 2011/11/11 18:01 UTC
Read the original article Hit count: 248

Filed under:
What is Multiple Document Interface (MDI)? In most VB.NET applications, it is using a single document interface (SDI). In this type of interface, every window is unique to aother window. But in multiple document interface, it works by having one parent window with child windows under it. See the screenshot below: As you can see, there is one parent window (in gray color) and there are 3 child windows (in blue, violet and orange color). You can have more than 3 child windows depending on your application requirements. But you can only have one parent window. Depending on the design of your MDI...

© ASP Free or respective owner

Related posts about vb.net