Registriert seit: 26. Mär 2007
53 Beiträge
Delphi 2006 Professional
|
Re: Fehler bei StrToFloat(StrAlsIntegerFormatiert)
16. Apr 2007, 15:08
Hatte
Delphi-Quellcode:
function Tfrm_budgets.getFormatted(value: String; decPlaces: Integer): Real;
var toFormat: Real;
f: TFormatSettings;
begin
if value = '' then
toFormat:= 0
else begin
f.ThousandSeparator:= '.';
f.DecimalSeparator:= ',';
toFormat:= StrToFloat(value, f);
end;
result:=StrToFloat(format('%.' + IntToStr(decPlaces) + 'n', [toFormat]));
end;
probiert und es ging nicht.
|