Click here to Skip to main content
Licence 
First Posted 11 Nov 2005
Views 17,922
Bookmarked 10 times

Implementing UIPAB in MDI

By | 11 Nov 2005 | Article
This article explains how to use UIPAB pattern when working with MDI in VB.NET

Sample Image - MDIWITHUIPAB.jpg

Introduction

When I started designing my project UI (Win Forms) based on UIPAB pattern, I've come across few issues. One of them is implementing UIPAB in MDI. In fact I searched (u can guess it) for it, many people asking the same question but unfortunately no replies for them (to me too), so I solved it in my own way.

 

Before going to solution I want to thank all programmers who wrote UIPAB articles and helped me a lot in understanding this (of course our PC is also one of them).

 

Solution

 

Yea, it’s very simple.

 I’ve a class called CommonClass (you can have your own name…).

 

Public Class CommonClass

    Public Shared mdi As New MDIFORM

End Class

 

Here MDIFORM is the name of the MDI Form.

Now all you have to do is use this shared object in your Starter class.

 

<STAThread()> _

Public Shared Sub Main()

        AddHandler Application.ThreadException, AddressOf Application_ThreadException

        Application.Run(CommonClass.mdi)

 End Sub

 

One more step, last one…

Put below two lines of code in each of your Child Form Load event, that’s it

 

        Me.MdiParent = CommonClass.mdi

        Me.Dock = DockStyle.Fill

 

Now you know how simple is it, right??

 

Here I put complete UIPAB demo project, in which 5 child forms and 1 MDI form are there.

 

Please feel free to send me your feedback/suggestions.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

RAMANA RAO P.R

Web Developer

United Arab Emirates United Arab Emirates

Member

At present I'm working for Emirates Airlines (Mercator) - Dubai.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionWhere's the code??? Pinmembermpemberton18:12 15 Feb '06  
AnswerRe: Where's the code??? Pinmemberbogdan_catrina2:42 20 Jun '06  
AnswerRe: Where's the code??? Pinmemberbogdan_catrina2:45 20 Jun '06  
GeneralUIPAB PinmemberMartin Bohring2:19 11 Nov '05  
GeneralRe: UIPAB PinmemberRoland Pibinger23:09 11 Nov '05  
GeneralRe: UIPAB PinmemberRAMANA RAO P.R18:50 20 Nov '05  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120517.1 | Last Updated 11 Nov 2005
Article Copyright 2005 by RAMANA RAO P.R
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid