I went through many MDI Parent articles but I am still confused.
I tried coding by myself but I don't know whether it is right or no.Though its working properly but still when I went through other articles this coding is not matching with them.
I created Form1 and set its property as follows:
Text Property= MdiParent
IsMdiContainer=True
In the coding part I wrote:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim ChildForm As New System.Windows.Forms.Form
ChildForm.MdiParent = Me
End Sub
Can I use the same procedure for all the projects?