how to create a MDI child form in VS3

  • Thread starter michael fienstien
  • Start date
C

ChrisM

Vs3?? Do you mean VS2003?

If so, you don't need to declare a form as a MDI child.
You need to make the parent form an MDI Parent, (Set IsMDIContainer to True)

Then the forms that are to become its children, simply set their MdiParent
property to the Parent form when instantiating them (or before displaying
then, or whenever else you want).

Cheers,

Chris.
 
M

michael fienstien

Thanks!
ChrisM said:
Vs3?? Do you mean VS2003?

If so, you don't need to declare a form as a MDI child.
You need to make the parent form an MDI Parent, (Set IsMDIContainer to
True)

Then the forms that are to become its children, simply set their MdiParent
property to the Parent form when instantiating them (or before displaying
then, or whenever else you want).

Cheers,

Chris.
 

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

Similar Threads


Top