sábado, 2 de maio de 2009

Dicas Delphi - Arredondando valores

procedure RoundDecimal(var AValue: double; Const ADecimal: integer);
var
strValue : string;
begin
strValue := FloatToStrF(AValue,ffFixed,18,ADecimal);
AValue := StrToFloat(strValue);
end;

Um comentário:

Henrique P. Boueri disse...

Muito legal as dicas e o blog de modo geral!