how to minimize child form inside of parent mdi form in vb.net...?
I change the property of "IsMdiContainer" to "True". but when i minimize parent mdi form, it is not minimize the child form...
Please help me.
Regards Pra$ad.

Recommended Answers

All 2 Replies

Did your Childform set its parent form?

'this is assumed you're calling your child form from your parent form
 Dim myForm As New Form
 Form1 = myForm
    With Form1
       .MdiParent = Me 
       .Show()
    End With
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.