W
WiseMonkey
I have a module called (for want of something better..."AutoExec") that sets
up a few Public variables. One of the variables is set up thus:
"Option Compare Database
Option Explicit
Public Const goodPwd = "xxxxxxxxx" "
etc. etc.
I can compare user input at any stage to this password to check if they have
entered a valid password in the following manner:
If txtEntered = goodPwd Then
Do Something
Else
Do Something else
End If
Here is the problem....
When I send the database to my users this part of the code does't seem to
run. What they are telling me is that they enter the correct password into a
text box on a form and click the OK button or whatever and nothing happens.
No message telling them that the password was correct or incorrect. Nothing.
The strange part is that it works perfectly on my computer.
I have checked to see that all the referenced libraries are the same and
that all the security settings are the same. I cannot imagine what can be
causing this.
All users are using Access '07 and the Db was created in '07.
All users are using XP (service pack 2....?)
Any clues?
up a few Public variables. One of the variables is set up thus:
"Option Compare Database
Option Explicit
Public Const goodPwd = "xxxxxxxxx" "
etc. etc.
I can compare user input at any stage to this password to check if they have
entered a valid password in the following manner:
If txtEntered = goodPwd Then
Do Something
Else
Do Something else
End If
Here is the problem....
When I send the database to my users this part of the code does't seem to
run. What they are telling me is that they enter the correct password into a
text box on a form and click the OK button or whatever and nothing happens.
No message telling them that the password was correct or incorrect. Nothing.
The strange part is that it works perfectly on my computer.
I have checked to see that all the referenced libraries are the same and
that all the security settings are the same. I cannot imagine what can be
causing this.
All users are using Access '07 and the Db was created in '07.
All users are using XP (service pack 2....?)
Any clues?