I have forms
of type fsMDIChild
that are set to initialized maximized ( wsMaximized
). They open normally, however when I close some of them the others change their status to WsNormal
.
I would like to know if you can avoid this, even if you force the size to not change.
Insertion code for forms:
if not Assigned(frmfornecedor) then
begin
frmfornecedor := tfrmfornecedor.create(frmPrincipal);
end;
In the event OnClose
of the forms there is only a Close
and nothing else.