Quote:
Originally Posted by SilverJester
It just means that the TPS Column was setup to accept variables of the type "double", which are numbers with 2 decimal places (even if those 2 decimal places are zeros). Basically a line of code just needs to be added that will round the number 13.725490 to 13.72.
|
A "double" variable is a 64-bit double-precision floating point value.
http://en.wikipedia.org/wiki/Double_precision
But yeah, there's a coding error with the variable assignments somewhere. Looks like it should probably be a single-precision floating point variable. A run-o-the-mill bug.