Registriert seit: 26. Nov 2003
Ort: Halle/Saale
4.343 Beiträge
Delphi 11 Alexandria
|
AW: Problem bei case // Problem bei Komponenten löschen
2. Sep 2010, 21:46
so zur Anregung:
Delphi-Quellcode:
var
L: TComponentList;
...
L := TComponentList.Create;
L.OwnsObjects := False;
...
L.Add(NewFrame);
...
for I := L.Count - 1 downto 0 do
begin
AFrame := (L[I] as TFrame);
AFrame.Free;
end;
|