Как спрятать окна MDI Child?
01.01.2007
procedure TCustomForm.VisibleChanging;
begin
if (FormStyle = fsMDIChild) and Visible then
raise EInvalidOperation.Create(SMDIChildNotVisible);
end;
Взято с https://delphiworld.narod.ru
procedure TCustomForm.VisibleChanging;
begin
if (FormStyle = fsMDIChild) and Visible then
raise EInvalidOperation.Create(SMDIChildNotVisible);
end;
Взято с https://delphiworld.narod.ru