I have an MDI form with 3 child windows.
The MDI starts empty.
Each child can be opened once from the menu.
When I open multiple windows, and close the top one should get focus, but the new active child-form's GotFocus() event is not firing.
Private Sub frmMain_gotFocus(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.GotFocus
...
End Sub