This is my current code for comparing passwords
If Me.txtPassword.Value = DLookup("Password", "qryUser", "[UserID]=" & Me.cmbUserName.Value) Then
But there is no case sensitive validation. Would appreciate some advise on how to add a case sensitive validation to this code.
If Me.txtPassword.Value = DLookup("Password", "qryUser", "[UserID]=" & Me.cmbUserName.Value) Then
But there is no case sensitive validation. Would appreciate some advise on how to add a case sensitive validation to this code.