Hallo,
ich habe ein Problem mit RCII. Folgende Funktion funktioniert mit RCI.
Code:
function MyIntToStr(const i: int): string;
var tmp: int;
begin
Result := '';
tmp := i;
repeat
if tmp < 0 then
begin
tmp := -1 * tmp;
end;
Result := Str.Chr(tmp mod 10 + 48) + Result;
tmp := tmp div 10;
until tmp = 0;
if i < 0 then
Result := '-' + Result;
end;
Bei RCII erscheint die Fehlermeldung:
[11:18] -> Undeclared identifier: 'Str'
Kann jemand helfen?