Auch wenn das Thema alt ist, hat es bei mir geholfen es Local zu deklarieren und schon verschwand bei mir die Meldung vom TE die ich auch hatte
Delphi-Quellcode:
ar plist: PPropList;
i, n: Integer;
LBotCommands2: TBotCommands2;
begin
LBotCommands2:= TBotCommands2.Create(Self);
try
n := GetPropList(LBotCommands2,plist);
try
for i := 0 to n-1 do
mmo1.Lines.Add(plist^[i]^.Name);
finally
FreeMem(plist);
end;
finally
LBotCommands2.Free;
end;
end;
Gruß