<-- Previous || Up || Next -->

C Int Ign Err Function
Convert Values Class

Public Function CIntIgnErr( _
    ByVal vValue As Variant _
    ) As Integer

"Convert To Integer Ignore Errors"
Attempt to convert vValue to an Integer value.
Return vValue as an Integer value if the conversion was successful.
Return 0 (zero) if vValue could not be converted to an Integer.

Examples:
    CIntIgnErr(34) = 34%
    CIntIgnErr(0) = 0%
    CIntIgnErr(-34) = -34%
    CIntIgnErr(34.3) = 34%
    CIntIgnErr(123456) = 0%
    CIntIgnErr("1") = 1%
    CIntIgnErr("0") = 0%
    CIntIgnErr(#12/31/1899#) = 1%
    CIntIgnErr("Word") = 0%
See also:
    CanBeInteger Function
    CLngIgnErr Function
    CBytIgnErr Function
    CInt Function (Visual Basic)
vValue: The value which will be converted to an Integer and returned (if conversion is possible). Conversion is not possible if vValue is Null, an Error, an Object, a non-numeric String, or a numeric value out of the range allowed for this data type.

Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.