Boolean = CBool ( Expression )
Converts an expression into a boolean.
An expression is false if it is:
An expression is true in all other cases.
PRINT CBool(0); " "; CBool(1)FALSE TRUE
PRINT CBool("Gambas"); " "; CBool("")TRUE FALSE
PRINT CBool(NULL)FALSE