MDI question

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • AMP

    #1

    MDI question

    Hello,
    I have form with a few controls.I open a child form with one of the
    buttons and the child form is contained in the parent,BUT, it is behind
    the other controls on the parent.So when I move it around on the
    parent, the parents buttons,lables. ..hide that portion on the child.
    Seems simple enough:
    Form thisOptions = new Options();
    thisOptions.Mdi Parent = this;
    thisOptions.Sho w();
    Any help would be appreciated.
    Thanks
    Mike

  • Leon Friesema

    #2
    Re: MDI question

    On 5 Mar 2006 06:13:00 -0800, "AMP" <ampeloso@gmail .com> wrote:
    [color=blue]
    >Hello,
    >I have form with a few controls.I open a child form with one of the
    >buttons and the child form is contained in the parent,BUT, it is behind
    >the other controls on the parent.So when I move it around on the
    >parent, the parents buttons,lables. ..hide that portion on the child.
    >Seems simple enough:
    > Form thisOptions = new Options();
    > thisOptions.Mdi Parent = this;
    > thisOptions.Sho w();
    >Any help would be appreciated.
    >Thanks
    >Mike[/color]

    Mike,

    you could place a docked panel onto the Main form, in that case the
    child will occupy the remainder part of the window

    Leon

    Comment

    Working...