Home All Groups Group Topic Archive Search About

MDI form Parent Problem

Author
29 Jun 2006 12:51 PM
Alejandro
Hi, I have 1 aplication with MDI parent and child forms - VB.net 2003,
in the parent I have a picture box, when I select some option from
menu, the new form is hide down the pict box, What can I do to fix
this???

Author
29 Jun 2006 2:59 PM
Brian Tkatch
Alejandro wrote:
> Hi, I have 1 aplication with MDI parent and child forms - VB.net 2003,
> in the parent I have a picture box, when I select some option from
> menu, the new form is hide down the pict box, What can I do to fix
> this???

I am not sure what the problem is.

I will mention one thing though.

Did you set the child form's .MDIParent to the form?

Dim Child_Form as New FormToBeOpened

Child_Form.MdiParent = Me
Child_Form.Show()

HTH,
B.