CBool Function [Runtime]/text/sbasic/shared/03100100.xhpSun Microsystems, Inc.converted from old format - fpeCBool functionCBool Function [Runtime]Converts a string comparison or numeric comparison to a Boolean expression, or converts a single numeric expression to a Boolean expression.Syntax:CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) or CBool (Number)Return value:BoolParameters:Expression1, Expression2: Any string or numeric expressions that you want to compare. If the expressions match, the CBool function returns True, otherwise False is returned.Number: Any numeric expression that you want to convert. If the expression equals 0, False is returned, otherwise True is returned.The following example uses the CBool function to evaluate the value that is returned by the Instr function. The function checks if the word "and" is found in the sentence that was entered by the user.Example:Sub ExampleCBoolDim sText As StringsText = InputBox("Please enter a short sentence:")REM Proof if the word »and« appears in the sentence.REM Instead of the command lineREM If Instr(Input, "and")<>0 Then...REM the CBool function is applied as follows:If CBool(Instr(sText, "and")) ThenMsgBox "The word »and« appears in the sentence you entered!"EndIfEnd Sub