MDI Container?

what do you want to do to the mdi container?

it's a bit vague just wondering how to work with it ;)

do you want to add something to it, colour it, or something else?

the container part is called an MdiClient if that helps, you can find it by looping through the mdi form's controls.
 
i want to know how to put forms into it and set the title of the main app to the form inside it like:

Main App
--Child Form

then set the title like

Main App - Child Form
 
set the MdiParent property of your ' other ' Forms.

eg:
Code:
'/// assuming you have set this form as IsMdiContainer = True
'/// to make other Forms ChildForms
	Private frmChild As Form2
	Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
		frmChild = New Form2
		frmChild.MdiParent = Me
		frmChild.Show()
	End Sub
 
Back
Top