Also mit Version 7.0 (Built 4.453) habe ich auch eine Anzeige von
100 , 1 , 1
Delphi-Quellcode:
uses math;
procedure TForm1.Button1Click(Sender: TObject);
var
p7,staedte : real;
begin
staedte := 100;
p7 := RoundTo((staedte*0.01),0);
showmessage(floattostr(staedte));
showmessage(floattostr(RoundTo((100*0.01),0)));
showmessage(floattostr(p7));
end;
Edit: hab (auch) SetRoundMode(rmTruncate) nicht gesetzt. Dann erhalte ich auch 100,1,0
Thomas H.