VB6 to VB.NET - Whers MDI?

  • Thread starter Thread starter Rodrigo
  • Start date Start date
R

Rodrigo

Hello, I'm starting now in VB.NET 2003, and I noticed that ther's no MDI
Form, that's kind of harsh when creating a program with multime
windows... How can I do this without an MDI? or, Is there a MDI Form in
..Net?
 
Hi Rodrigo,

You simply set the base form (that form with the main menu) as
ismdicontainer = true; then each of the menu selections launches the child
windows like this:

Application.DoEvents()

Dim newmdichild As New excelconvertlarge

newmdichild.MdiParent = Me

newmdichild.Show()

HTH,

Bernie Yaeger
 

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

Back
Top