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

Make Boolean Function
Coerce Make Class

Public Function MakeBoolean( _
    ByVal vValue As Variant _
    ) As Variant

"Make String From Boolean" or "Coerce Boolean To String"
Coerce a Boolean value into a 2-character string.
Return the two-character string whose bytes have the same in-memory representation as the Boolean value vValue.

Examples:
    MakeBoolean(True) = Chr$(255) + Chr$(255)
    MakeBoolean(False) = Chr$(0) + Chr$(0)
    MakeBoolean(1234) = Chr$(255) + Chr$(255)
    MakeBoolean(0) = Chr$(0) + Chr$(0)
    IsNull(MakeBoolean(Null)) = True
See also:
    MakeBooleanFast Function
    CoerceToBoolean Function
vValue: The Boolean value whose bytes are to be interpreted as a string. vValue can be a numeric value, a date value, a numeric string, or a date string. Function returns Null if vValue is Null. Function returns an empty string if vValue cannot be fixed up to a number.

Note: This function converts the string representation of the value to Unicode using the default code page of the system.
v1.3 Change: Removed 16-bit support from this function.

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