Hi everyone,

I got a problem with mdi parents and childs. I show a window this way:
VB Code:
  1. Dim childWindow1 As New windowClass1
  2. window.mdiparent=me
  3. window.show()

It works fine unless there is another child window opened and maximized, when this happens the childWindow1 also maximizes itself although I want its windowState to be Normal.

Why does it maximize automatically if there is another child window openned and maximized? What can I do to fix this?

Thanks for your help.