Hi, COULD SOMWEONE P-OSSIBLY TELL ME HOW TO convert floating point data to a precision of 2 decimal points....urgent..pleeeeeeez. besides using String manipulation.... thanx. george
Theres probably a function to do this which I couldn't find, but how about: x = Math.round(x * 100) / 100.0; If x is a double, this will round it to 2 decimal places.