In vb.net no form is MDI,any form can ve made MDI by setting IsmdiContainer property to true.
But in Vb we add the MDI Form.
In Vb.net
Form1_click
dim obj as new form1
obj.show()
obj.mdiparent =me
But in VB,i write
dim obj as new form1
obj.show
obj.
but there is no MDiparent, can u plz reply how to do???