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

C Byte Ign Err Function
Convert Values Class

Public Function CByteIgnErr( _
    ByVal vValue As Variant _
    ) As Byte

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

Examples:
    CByteIgnErr(34) = 34
    CByteIgnErr(0) = 0
    CByteIgnErr(-34) = 0
    CByteIgnErr(34.3) = 34
    CByteIgnErr("1") = 1
    CByteIgnErr("0") = 0
    CByteIgnErr("Word") = 0
See also:
    CanBeByte Function
    CIntIgnErr Function
    CByte Function (Visual Basic)
vValue: The value which will be converted to a Byte 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.