whats's the diference between them??
vbBinaryCompare nad vbTextCompare??
Posted by Zazabi_00 on Mon 20 Jun 2005 08:57 AM — 3 posts, 17,976 views.
Best example in the script reference is under StrComp (you could see all of them if you search for either term, dictionary also has a telling example).
TextCompare compares the textual representation ('a' and 'A' are both a's) while BinaryCompare compares the binary value (and as such, there is a bit of difference).
Binary is default, text basically just makes it case insensitive.
TextCompare compares the textual representation ('a' and 'A' are both a's) while BinaryCompare compares the binary value (and as such, there is a bit of difference).
Binary is default, text basically just makes it case insensitive.
i see your point , thanks