Search results for query: *

  1. P

    MDI Form : Close all but active

    tried that... get a "Operator 'IsNot' is not defined for type 'System.Windows.Forms.Form'." error.
  2. P

    MDI Form : Close all but active

    I would like to close all mdichildren except the currently active one. I already have a "close all" function: Dim f As Form For Each f In Me.MdiChildren() f.WindowState = FormWindowState.Maximized Next But how would I write one that doesn't close the active form? Thank you in advance.
Back
Top