Hi,
I can't seem to find any information at all...about how I can assign an Array into TStringList.
I'd like to do something like that :
for i:=0 to 10 do
begin
vArr[0] := intToStr(i);
vArr[1] := intToStr(i + 1);
vAStringList.addObject(inttostr(i), vArr);
end;
I'm trying to build a data structure that has similar name, but two different values sometimes :
Event A - ID 1
Event A - ID 2
Event B - ID 55
Event C - ID 12
Is this possible?