question regarding showdialog() and show() and a child form

  • Thread starter Thread starter VMI
  • Start date Start date
V

VMI

I have an MDI child form and when I display it I'd like all the other open
windows to remain unusable ( like the showdialog() ) but, at the same time,
it should be a child window (like the Form.Show() ). Is this possible?

Thanks.
 
You can iterate over the MdiChildren property array and mark all Form.Enabled = false.

I don't know that this is the best, or only approach, but it should work.
 
Back
Top