Numeric underflow

In defining a constant with the Const statement, you specified a numeric value that is too small for the specified or default data type:

  • The value is too small for the data type specified by the value's suffix character.
  • If no suffix character is specified, the value is too small for a Double.

For example:

Const X = .1E-300!         ' Illegal because the value is too small for
                           ' the data type Single
Const X = .1E-300#         ' Legal

Change the suffix character to match the magnitude of the value, or specify a larger value.