How to make Access differentiate capital letter "A" and normol letter "a" in que

T

Thinh Nguyen

Hi all,
In my table, I used some letters in Capital and normal
form. Then when I used the letters as parameters in a
query, I found out Access cannot differentiate "A"
and "a". Can anybody help me with this.
Many thanks
 
D

Douglas J. Steele

StrComp("A", "a", vbBinaryCompare) or StrComp("A", "a", 0) returns -1, while
StrComp("A", "a", vbTextCompare) or StrComp("A", "a", 1) returns 0.
 
Top