阿善:
D7的StrToInt64确实这样做的,不过不知道为什么要叫StrToInt64,不直接叫StrToInt,反正StrToInt64一定能处理StrToInt的功能,而免得别人用S……
[阅读: 784] 2005-11-07 16:30:12
function StrToInt64(const S: string): Int64;
var
E: Integer;
begin
Val(S, Result, E);
if E <> 0 then ConvertErrorFmt(@SInvalidInteger, [S]);
end;
让暴风雨来的更猛烈些吧!
