whats new ¦  programming tips ¦  indy articles ¦  intraweb articles ¦  informations ¦  links ¦  interviews
 misc ¦  tutorials ¦  Add&Win Game

Tips (1541)

Database (90)
Files (137)
Forms (107)
Graphic (114)
IDE (21)
Indy (5)
Internet / LAN (130)
IntraWeb (0)
Math (76)
Misc (126)
Multimedia (45)
Objects/
ActiveX (51)

OpenTools API (3)
Printing (35)
Strings (83)
System (266)
VCL (242)

Top15

Tips sort by
component


Search Tip

Add new Tip

Add&Win Game

Advertising

29 Visitors Online


 
...round numbers to a predetermined number of decimals?
Autor: Dean
[ Print tip ]  

Tip Rating (3):  
     


function Rounder(var Value: Double; Decimals: Integer): Double;
var
  
j: Integer;
  A: Double;
begin
  
A := 1;
  case Decimals of
    
0: A := 1;
    1: A := 10;
    else
      for 
j := 1 to Decimals do
        
A := A * 10;
  end;
  Result := Int((Value * A) + 0.5) / A;
end;


procedure TForm1.Button1Click(Sender: TObject);
var
  
Value: Double;
begin
  
Value := 23.56784;
  //Result is 23.57
  
label1.Caption := FloatToStr(Rounder(Value, 2));
end;


 

Rate this tip:

poor
very good


Copyright © by SwissDelphiCenter.ch
All trademarks are the sole property of their respective owners