D Don Jan 17, 2008 #1 I have a assigned a password format to a field in a table I've created. How can I make this field case sensitive? Thanks.
I have a assigned a password format to a field in a table I've created. How can I make this field case sensitive? Thanks.
D Douglas J. Steele Jan 17, 2008 #2 Not easily. Realistically, Access isn't case-sensitive. If you're saying that you want to have a case-sensitive SELECT statement, you can use the StrComp function: SELECT Field1, Field2 FROM MyTable WHERE StrComp(Password, "MiXeDCaSe") = 0
Not easily. Realistically, Access isn't case-sensitive. If you're saying that you want to have a case-sensitive SELECT statement, you can use the StrComp function: SELECT Field1, Field2 FROM MyTable WHERE StrComp(Password, "MiXeDCaSe") = 0