MDI forms in Vb.net

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • pbala
    New Member
    • Dec 2008
    • 37

    MDI forms in Vb.net

    In Vb we use MDI form for the menu Items.
    Which is used in the Vb.net for the same as MDI form
  • markmcgookin
    Recognized Expert Contributor
    • Dec 2006
    • 648

    #2
    Please be a little clearer about you question

    Comment

    • rajujrk
      New Member
      • Aug 2008
      • 107

      #3
      ya, we can create MDI form in vb.net

      set the current form property isMDIContainer= True

      then create another form name as Form2

      Create a menustrip in the MDIform..

      write the below code
      Code:
      dim frm as new Form2
      frm.MDIParent=me
      frm.show
      Thats all..

      Comment

      Working...