MDI program and child forms
Hi,
I have an MDI project and it allows the user to show any number of child forms. However, when about 3 children are showing, the child windows go through a crazy loop as if they are all fighting to be the top window. After about 10 seconds, the settle down but obviously it shouldn't happen. I'm calling the forms in the MDI form like:
Private Sub cmdResellerDetails_Click()
frmResellers.Show
End Sub
Private Sub cmdProfitSell_Click()
frmProfitSell.Show
End Sub
Where frmResellers and frmProfitSell are both child forms. Does anyone know why my windows are going crazy? :D