2
I am making a mobile application of orders for android in Delphi XE6, in this application I make a discount calculation, which divides the amount of Discount given by 100 less the total value, but the price value is already coming brittle from the database of ex customer : 11,568.
I wanted to know how do I top up this value?!?! ; I found examples using 'round' but it rounds the values more.
I agree with Guilherme Bernal, if you need a higher value use
int64
for the presentation to the end user divided by 100 and use the functionFormatFloat
.– Jeo Master