Also bei mir funktionierts auch mit PChar:
Delphi-Quellcode:
var
p: PChar;
s: string;
i: integer;
begin
s := '+2345';
p := PChar(s);
i := StrToInt(p);
Caption := IntToStr(i) //In der Caption stehts dann (bei +) ohne Vorzeichen
end;
Keinerlei Meckereien von Delphi
Gruß, Sebastian