Problems with Minimizing Forms

  • Thread starter Thread starter Don
  • Start date Start date
D

Don

I have a form that displays a second form modally (via ShowDialog). When
the second form gets minimized, how do you get the parent form to minimize,
too?

- Don
 
Don,

Before showing the second form modally, make the first form the owner of the
second form:

Dim f As New Form2()

f.Owner = Me
f.ShowDialog()

Kerry Moorman
 

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