Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MDI Child

Status
Not open for further replies.

GDX

Programmer
Jun 4, 2000
186
US
Hello can someone tell me how to go about creating an MDI child? I already created the MDI Parent by setting isMDIContainer = true but now when i do a form.show() the child is allowed to go outside the MDI Parent, Do i have to specify additional parameters to make a form an MDI Child? Or is it just a regular form?

Thanks a lot,
Gordon

Gordon R. Durgha
gd@vslink.net
 
I figured Form was a variable of a form you had already instantiated.

Dim f as New Form2
f.MDIParent = Me
f.Show()
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top