|
Be carefull, with using Cint, the number is converted to integer. If the value exceeds 32000 (its a bit more than that) the system will raise an error. Use the conversion function to the datatype of your table field to be sure.
Cint() for integers,
Clng() for Longs,
CDbl() for Double,
...
It never hurts to be carefull.
|