I have a double value that can get very large, and when it goes over 10 million,
java starts storing it in scientific notation.
So if double = 9999999.00, it look to me in the debugger as 9999999.00
But when the double over 10000000.00 it looks like 1.00E7.
It is messing up my report formating. How can I get the number to not convert to scientific notation?