Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Passwords

Status
Not open for further replies.

AccessXP

IS-IT--Management
Jan 29, 2002
132
I would like to know how to hide the password by using the * and not seeing the password.

Any help please?
 
Go to the properties of that field and change input mask to password*. It's that simple.:-D
Laurie
 
I will give this a try thank you.

 
This may help you understand what is happening,

The code:
Private Sub Command32_Click()
On Error GoTo Err_Command32_Click

Dim PWD As String

PWD = DLookup("password", "UsysPassword ")

If PWD <> InputBox("Enter Password") Then
MsgBox "You have entered the wrong password, The program will now EXIT!"
DoCmd.Quit

where do I change the properties for this windows?

 
The inputbox function does not have the capability to use the password input mask. I would recommend creating a custom form to input the password so you can use the password input mask in the textbox where you are entering the password.

HTH,
Eric
 
luceze,

Where could I get information to help me do this?

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top