|
lstrcmpi The lstrcmpi function compares two character strings. The comparison is not case sensitive. VB4-32,5,6 Declare Function lstrcmpi Lib "kernel32" Alias "lstrcmpiA" (ByVal lpString1 As String, ByVal lpString2 As String) As Long |
VB.NET System.String.Compare |
Operating Systems Supported |
Requires Windows NT 3.1 or later; Requires Windows 95 or later |
· lpString1 Points to the first null-terminated string to be compared.
· lpString2 Points to the second null-terminated string to be compared. |
If the function succeeds and the string pointed to by lpString1 is less than the string pointed to by lpString2, the return value is negative; if the string pointed to by lpString1 is greater than the string pointed to by lpString2, it is positive. If the strings are equal, the return value is zero. |
|
|
|