Problem A
This results in a number such as 43.6743 whilst I need it to be 43.67
Problem B
This won't even compile and results in exception
What am I missing?
Code:
tblThingTotSqMtrs.Value := (tblThingHight.Value * tblThingWidth.Value);
This results in a number such as 43.6743 whilst I need it to be 43.67
Problem B
Code:
tblThingCost.Value := (tblThingTotSqMtrs.Value * tblThingCostPerSqMtr.Value);
This won't even compile and results in exception
Code:
codeIncompatible types: 'TCurrencyField' and 'Extended'
What am I missing?