Noch ein Tipp: Wenn du das
MDI Fenstermodell in Verbindung mit einer ActionList verwendest, dann passt eine Action WindowCloseAll ganz gut ins Bild:
Delphi-Quellcode:
procedure TMainForm.WindowCloseAllActionExecute(Sender: TObject);
begin
while Assigned(ActiveMDIChild) do
ActiveMDIChild.Free;
end;
Freundliche Grüße