Er will es ja im
OI haben, denke ich?
Klappt es, wenn das Array eine Klasse ist? (ungetestet):
Delphi-Quellcode:
TArray_IDS = class
FValues : array[0..255] of Byte;
private
function GetValue(index: Integer): Byte;
procedure SetValue(index: Integer; const Value: Byte);
public
property Values[index: Integer]: Byte Read GetValue Write SetValue; default;
end;
In TInfoForm dann die Klasse als published deklarieren... extra eine Komponente basteln war mir aber jetzt zuviel zum Testen.