1
I’m trying to do this but it’s not working:
Var
MyArray: array[1..3] of array[1..3] of Ttime;
Begin
MyArray:=( ( StrToTime('08:25'), StrToTime('08:25'), StrToTime('08:50') ),
( StrToTime('09:25'), StrToTime('08:25'), StrToTime('08:25') ),
( StrToTime('10:25'), StrToTime('08:25'), StrToTime('08:25') )
);
end;
I mean, there is no way, can only abstract? Now I don’t know if I vote because I know if it’s true, I don’t know enough Delphi for that :(
– Maniero
Look I believe that there is no way, the usual way to set the array would be
MyArray[1,2] := StrToTime('08:25');
but let’s wait if someone else presents another solution :)– David
From what I’ve seen, that’s right.
– Maniero