0% found this document useful (0 votes)
67 views3 pages

Vba STR CMP 2

The document is a log of 19 calls to the StrComp string comparison function in VBA. For each call, it records the two strings being compared, the comparison method used, and whether the first string is equal, less than, or greater than the second string. In most cases, different single-character strings are compared to the string "a", with the other string being reported as less than "a".

Uploaded by

dhick4
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
67 views3 pages

Vba STR CMP 2

The document is a log of 19 calls to the StrComp string comparison function in VBA. For each call, it records the two strings being compared, the comparison method used, and whether the first string is equal, less than, or greater than the second string. In most cases, different single-character strings are compared to the string "a", with the other string being reported as less than "a".

Uploaded by

dhick4
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

__vbaStrCmp v2.

1 by AvAtAr//TEAM RESURRECTiON
----------------------------------------------------------------------------------------1 - StrComp function called from 00798A06
string1: none
string2: none
compare: vbBinaryCompare (0)
return: string1 is equal to string2 (0)
----------------------------------------------------------------------------------------2 - StrComp function called from 00798A39
string1: none
string2: none
compare: vbBinaryCompare (0)
return: string1 is equal to string2 (0)
----------------------------------------------------------------------------------------3 - StrComp function called from 0079BD3C
string1: a
string2: a
compare: vbBinaryCompare (0)
return: string1 is equal to string2 (0)
----------------------------------------------------------------------------------------4 - StrComp function called from 0079BD53
string1: b
string2: a
compare: vbBinaryCompare (0)
return: string1 is less than string2 (-1)
----------------------------------------------------------------------------------------5 - StrComp function called from 0079BD70
string1: c
string2: a
compare: vbBinaryCompare (0)
return: string1 is less than string2 (-1)
----------------------------------------------------------------------------------------6 - StrComp function called from 0079BD8D
string1: d
string2: a
compare: vbBinaryCompare (0)
return: string1 is less than string2 (-1)
----------------------------------------------------------------------------------------7 - StrComp function called from 0079BDAA
string1: e
string2: a
compare: vbBinaryCompare (0)
return: string1 is less than string2 (-1)
----------------------------------------------------------------------------------------8 - StrComp function called from 0079BDC7
string1: f
string2: a
compare: vbBinaryCompare (0)
return: string1 is less than string2 (-1)
----------------------------------------------------------------------------------------9 - StrComp function called from 0079BDE4

string1: g
string2: a
compare: vbBinaryCompare (0)
return: string1 is less than string2 (-1)
----------------------------------------------------------------------------------------10 - StrComp function called from 0079BE01
string1: h
string2: a
compare: vbBinaryCompare (0)
return: string1 is less than string2 (-1)
----------------------------------------------------------------------------------------11 - StrComp function called from 0079BF55
string1: a
string2: a
compare: vbBinaryCompare (0)
return: string1 is equal to string2 (0)
----------------------------------------------------------------------------------------12 - StrComp function called from 0079BF6C
string1: b
string2: a
compare: vbBinaryCompare (0)
return: string1 is less than string2 (-1)
----------------------------------------------------------------------------------------13 - StrComp function called from 0079BF89
string1: c
string2: a
compare: vbBinaryCompare (0)
return: string1 is less than string2 (-1)
----------------------------------------------------------------------------------------14 - StrComp function called from 0079BFA6
string1: d
string2: a
compare: vbBinaryCompare (0)
return: string1 is less than string2 (-1)
----------------------------------------------------------------------------------------15 - StrComp function called from 0079BFC3
string1: e
string2: a
compare: vbBinaryCompare (0)
return: string1 is less than string2 (-1)
----------------------------------------------------------------------------------------16 - StrComp function called from 0079BFE0
string1: f
string2: a
compare: vbBinaryCompare (0)
return: string1 is less than string2 (-1)
----------------------------------------------------------------------------------------17 - StrComp function called from 0079BFFD
string1: g
string2: a
compare: vbBinaryCompare (0)
return: string1 is less than string2 (-1)

----------------------------------------------------------------------------------------18 - StrComp function called from 0079C01A


string1: h
string2: a
compare: vbBinaryCompare (0)
return: string1 is less than string2 (-1)
----------------------------------------------------------------------------------------19 - StrComp function called from 0079C59B
string1: 4572DBDB
string2: adaada
compare: vbBinaryCompare (0)
return: string1 is greater than string2 (1)
-----------------------------------------------------------------------------------------

You might also like