Registriert seit: 20. Jan 2006
Ort: Lübbecke
11.453 Beiträge
Delphi 12 Athens
|
AW: Delphi 12 / TList unter 64 Bit funktioniert nicht mehr wie unter 11.3
18. Jun 2024, 14:41
Wie wäre es denn damit:
Delphi-Quellcode:
type
{$IF CompilerVersion < 36.0 Delphi 12 Athens }
TListIndex = Integer;
{$ELSE}
TListIndex = NativeInt;
{$ENDIF}
type
TBauteil = class(TObject)
ID : Integer;
Name : string;
end;
TBauteilList = class(TObjectList)
private
function GetItem(ndx: TListIndex): TBauteil;
public
property Items[ndx: TListIndex]: TBauteil read GetItem; default;
end;
|