Newbie - MDI Question

A

Andy

Hi

I', just starting out building my first real app in VB.Net. In the long run
I want this app to use MDI forms. But, to get the app up and running quick I
plan to implement it's features step by step.
If I no in the beginning just implement some features and use a standard
single form for these, can this form easily be transformed to a MDI child,
so I can implement this form in my MDI app without changing too much of the
code?

/A.
 
K

Ken Tucker [MVP]

Andy,

You just have to set the form's mdiParent before you show it to
make a form a mdi child

Dim frm As New WindowsApplication1.Form1

frm.MdiParent = Me

frm.Show()



Ken
 
R

RobinS

The answer to your question is "Yes".

Later, you can set the IsMDIContainer property
to True, and add your own MenuStrip, ToolStrip,
and StatusStrip. This is pretty much what
starting with an MDI template does for you.

Robin S.
 

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