Connecting Tech Pros Worldwide Forums | Help | Site Map

MDI forms in Vb.net

pbala's Avatar
Member
 
Join Date: Dec 2008
Location: Tamil Nadu
Posts: 34
#1: Dec 17 '08
In Vb we use MDI form for the menu Items.
Which is used in the Vb.net for the same as MDI form

markmcgookin's Avatar
Moderator
 
Join Date: Dec 2006
Location: Northern Ireland / England
Posts: 546
#2: Dec 18 '08

re: MDI forms in Vb.net


Please be a little clearer about you question
Member
 
Join Date: Aug 2008
Posts: 48
#3: Feb 2 '09

re: MDI forms in Vb.net


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
Expand|Select|Wrap|Line Numbers
  1. dim frm as new Form2
  2. frm.MDIParent=me
  3. frm.show
  4.  
Thats all..
Reply