要不用FORMAT要不就自己写一个小函数如下:
调用FormatInteger(5,2)
function FormatInteger(Int :Integer
numlen: Integer) :string;
var
temp:string;
begin
temp := '';
while length(temp) < numlen do
temp := '0' + temp;
temp := temp + Int2Str(int);
Result := Copy(temp,Length(temp) - numlen + 1 , numlen);
end;