MDI container question

  • Thread starter K E Senthilkumar
  • Start date
K

K E Senthilkumar

Hi,

I am newbie, so not much known about programming. Trying to learn through
books and help materials.

I would like to design an application where i have a frmMain. I marked this
form as a MDI container. On the left hand side i have designed a Outlook
style navigattion bar and added a splitter control.

When i click on the navigation items, i want a form to be shown on the empty
area of the frmMain. I like to keep as many forms opened like this.

how can i achive this.

I am using VS.NET 2005.

Thanks in advance

Senthil
 
R

Ravi Bhavnani

This is done by creating the form to be shown and setting its MdiParent
property, eg:

MyChildForm mcf = new MyChildForm();
mcf.MdiParent = frmMain;
mcf.Show();

/ravi
 

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