Changes

Jump to: navigation, search

Creating a Visual Basic MDI Form

5 bytes removed, 18:00, 23 July 2007
Writing the Visual Basic Code to Add the Children to the MDI Parent
<pre>
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
MDIchild1.MdiParent = Me
MDIchild1.Show()
MDIchild2.MdiParent = Me
MDIchild2.Show()
End Sub
</pre>

Navigation menu