Hello all, good day. I would like to ask a question, i've been trying to import something into the database via job and I am having issues with some values, here is an example.
1000.002
Here is the line of code within the switch where it is supposed to assign the value:
case COMVariantType::VT_R8 : cellItemId = strFmt(num2Str(cells.item(record, 1).value().double(),0,0,0,0)); break;
Instead of assigning the value of 1000.002 it instead assigns just the value 1000.
What is wrong with my conversion here?
Thank you.