1
Have forms
of the kind fsMDIChild
that are set to start maximized (wsMaximized
). They open normally, however when I close some of them the others change their state to WsNormal
.
I wonder if there’s any way to avoid it, even if it’s forced so the size doesn’t change.
Code of insertion of the Forms:
if not Assigned(frmfornecedor) then
begin
frmfornecedor := tfrmfornecedor.create(frmPrincipal);
end;
At the event OnClose
of the Forms there is only one Close
and nothing more.
I couldn’t reproduce this problem here. These forms are created in Runtime?
– stderr
Yes friend, they are Runtime
– Giovani
You can edit the question and put how you are creating these images?
– stderr
I added, see if it helps.
– Giovani