I am using TFDTable component in Delphi Seattle. I have kept this table component at design time.
While executing TFDTable(Compo).Open
I get error while debugging (Ctrl +F7) "Floating point inexact result at 0042F353"
I googled, but got the reason but didn't get exactly what it is.
Any suggestions?
Reference URL:
http://www.delphigroups.info/2/e8/524771.html
Floating Point inexact result
This exception suggests that you have the "loss of precision" mask bit in the FPU turned OFF. It is normally ON. Look for the $0020 bit in the system variable Default8087CW and try ORing in $0020 into the control word with a Set8087CW(Default8087CW or $0020) statement.
http://www.umiacs.umd.edu/~resnik/ling645_sp2002/cmu_manual/node19.html