4 lines
204 B
Text
4 lines
204 B
Text
'Set the string comparison method to Binary.
|
|
Option Compare Binary ' That is, "AAA" is less than "aaa".
|
|
' Set the string comparison method to Text.
|
|
Option Compare Text ' That is, "AAA" is equal to "aaa".
|