View Single Post
Old 12-22-2000, 11:24 AM   #9
mosquito
SQL nutcase
 
mosquito's Avatar
 
Join Date: Sep 2000
Location: Belgium
Posts: 1,136
Send a message via AIM to mosquito
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.
mosquito is offline   Reply With Quote