![]() |
Order and save right now!
20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! |
⤷ Format a floating point value
Use FormatFloat function for this. This function has many different types of number format. For example:
procedure TForm1.Button1Click(Sender: TObject);
var
i: Integer;
begin
i:=1234567890;
Caption:=FormatFloat('#,', i);
end;
-
More for developers