Hi all,
Here is a piece of code I have to check if PW is OK. I do not know why it says that PW is not OK when I use Capital Letters. Can anyone help? I believe my problem is here but not sure.
...
For K = 1 To Len(Me!PW)
strPW1 = strPW1 & Asc(Mid$(Me!PW, K, 1))
strPW2 = strsPW2 & Asc(Mid$(.Column(2), K, 1))
Next K
If strPW1 = strPW2 Then
...
Tks a lot
Here is a piece of code I have to check if PW is OK. I do not know why it says that PW is not OK when I use Capital Letters. Can anyone help? I believe my problem is here but not sure.
...
For K = 1 To Len(Me!PW)
strPW1 = strPW1 & Asc(Mid$(Me!PW, K, 1))
strPW2 = strsPW2 & Asc(Mid$(.Column(2), K, 1))
Next K
If strPW1 = strPW2 Then
...
Tks a lot