CBool Function

किसी भी स्ट्रिंग या न्यूमेरिक कम्पेरिज़न को बूलिए एक्सप्रेशन में बदलता है, या एकल न्यूमेरिक एक्सप्रेशन को बूलिए एक्सप्रेशन में बदलता है.

Syntax:

CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) or CBool (Number)

वापसी मूल्य:

Bool

पैरामीटर

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.

Error codes:

5 Invalid procedure call

उदाहरण:

Sub ExampleCBool

Dim sText As String

    sText = InputBox("Please enter a short sentence:")

    ' Proof if the word »and« appears in the sentence.

    ' Instead of the command line

    REM If Instr(Input, "and")<>0 Then...

    REM  CBool फ़ंक्शन निम्नानुसार लागू किया जाता है:

    If CBool(Instr(sText, "and")) Then

        MsgBox "The word »and« appears in the sentence you entered!"

    EndIf

End Sub