Dec 19, 2002 #1 croakyfrog Technical User Joined Dec 4, 2001 Messages 51 Location GB hi does anyone know the value range of a 'real' data type? thanks! )
Dec 19, 2002 Thread starter #2 croakyfrog Technical User Joined Dec 4, 2001 Messages 51 Location GB ps - has anyone experienced problems in the shape of funny error codes when using this? Upvote 0 Downvote
Dec 19, 2002 #3 JamesLean Programmer Joined Dec 13, 2002 Messages 3,059 Location GB Use BOL!!: Code: Floating point number data from –3.40E + 38 through 3.40E + 38. Storage size is 4 bytes. Remember that this data type only stores an approximation of the number. I would try and use int or decimal data types if at all possible. Upvote 0 Downvote
Use BOL!!: Code: Floating point number data from –3.40E + 38 through 3.40E + 38. Storage size is 4 bytes. Remember that this data type only stores an approximation of the number. I would try and use int or decimal data types if at all possible.