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???

Recommended Answers

All 2 Replies

Hi,

You have to set the Property
"MDIChild = True"
@ design time. You cannot set it during run-time in VB6

Regards
Veena

Thx,One difference I want to tell,I VB we can ADD only One MDI form, BUT in Vb.net we can add any number of MDI.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.