Subscribe MDI parent form to MDI child Closed event

  • Thread starter Thread starter MuZZy
  • Start date Start date
M

MuZZy

Hi,

How do i notify the main MDI form that one of the child forms got closed?

Thank you
Andrey
 
Andrey,

Basically, you would attach a method on the main form to the Closing or
Closed event on the child form when it is created. This might require that
you make the event handler public, if the creation of the child is occuring
outside of the scope of the main form.

Hope this helps.
 
Back
Top