Einzelnen Beitrag anzeigen

newgro

Registriert seit: 26. Mär 2007
53 Beiträge
 
Delphi 2006 Professional
 
#5

Re: Fehler bei StrToFloat(StrAlsIntegerFormatiert)

  Alt 16. Apr 2007, 14:33
Sollte Code erforderlich sein:
Delphi-Quellcode:
function getFormatted(value: String; decPlaces: Integer): Real;
var toFormat: Real;
begin
  if value = 'then toFormat:= 0 else toFormat:= StrToFloat(value);
  result:=StrToFloat(format('%.' + IntToStr(decPlaces) + 'n', [toFormat]));
end;
Cheers
Per
  Mit Zitat antworten Zitat