MDI Form Does not display Child Form if a Split Container used

M

Mike TI

Jan 31, 2006

Dear all

I am new to VB Net 2005 and learning by building a small project.

I have created an MDI Form. I placed a SplitContainer on the MDI Form. Now
when I want to display a Child Form on the MDI Form, it will not show. If I
remove the SplitContainer, it is displayed.

(Code)
Dim ChildForm1 As New ChildForm()
ChildForm1.MDIParent=Me
ChildForm1.Show()

Thank you.
 
M

Martin

That's why I use the splitter. The Split container occupies the entire MDI
workspace, leaving no space for any children.

Hth,
Martin
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top