You can also use FloatToStr() command and limit the number of characters after the mantissa.
George Tokas.
Main Topics
Browse All TopicsAm trying to print a number showing only two decimal places ; this is after
calculating in double precision then converting the number into a string.
I need to do something in between I think... would appreciate some help have also attached the code
This question is in progress.
Our experts are working on an answer right now.
Sign up for immediate access to the solution once it becomes available.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: KdoPosted on 2009-10-30 at 05:12:30ID: 25702114
Hi Pete,
))); // requires Sysutils.h
There are a LOT of ways to do this with C++. All of the traditional C functions are available to you, and the Borland/VCL extensions. Pick your poison, so to speak. :)
sprintf (StringBuffer, "%10.2lf", double_value); // Put formatted string in StringBuffer using C function.
MyString = Format ("%10.2lf", ARRAYOFCONST((double_value
The FloatToStrF, Format, and FormatFloat methods of the AnsiString (String) class may also work for you.
Good Luck,
Kent