H9FPz‖

hyUAD‖StrComp Function

8buFG‖Compares two strings and returns an integer value that represents the result of the comparison.

sDAvR‖Syntax:


6m8GA‖StrComp (Text1 As String, Text2 As String[, Compare])

7ZVP8‖Return value:

Integer

swgoh‖Parameter:

XQK5V‖ Text1: Any string expression

McBSB‖ Text2: Any string expression

Jbc2Z‖ Compare: This optional parameter sets the comparison method. If Compare = 1, the string comparison is case-sensitive. If Compare = 0, no distinction is made between uppercase and lowercase letters.

YDRRT‖Return value

SEjHR‖Error codes:

5 Invalid procedure call

FjifC‖Example:


Sub ExampleStrComp
Dim iVar As Single
Dim sVar As String
    iVar = 123.123
    sVar = Str$(iVar)
    MsgBox strcomp(sVar , Str$(iVar),1)
End Sub