Public Function IsFalse( _ ByVal vValue As Variant _ ) As Boolean
IsFalse(23) = False IsFalse(0) = True IsFalse("Hello.") = True IsFalse("True") = False IsFalse("False") = True IsFalse("1") = FalseSee also:
IsTrue Function IsOn FunctionvValue: Value which is checked to see if it is False. If vValue is numeric, return True if it equals 0 (zero). If vValue is a string, return True if it does NOT equal "on", "true", "yes", "1", or "+". Function returns False otherwise.
Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.