H9FPz‖

iH74F‖StrComp Function

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

FVEx2‖Syntax:


WpnwF‖StrComp (string1 As String, string2 As String[, Compare As Integer]) As Integer

WADQ4‖Parameters:

AFWiC‖ string1: Any string expression

F7EgB‖ string2: Any string expression

rPCvM‖ 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.

GePPP‖Return value:

Integer

SEjHR‖Error codes:

5 Invalid procedure call

EFSA4‖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