View Full Version : password question


mapat
07-27-2007, 07:40 AM
hello,

I have a password textbox on a form. As the user types in his password I want the textbox to display the '*' symbol, just like on any log in page. How do I do this?

thanks

Fernando
07-27-2007, 07:58 AM
Copy and paste the following on google search:

password mask site:http://www.access-programmers.co.uk/forums

and then click search.

boblarson
07-27-2007, 08:20 AM
The quick answer for here, so nobody has to go searching, is to just set the format property of the text box to PASSWORD. If you type the word "Password" into the Format property it will then mask the password.

To hide the password in the table set the input mask to password.

However, you can still copy and paste the data into another location and it will paste the actual password. To keep it completely inaccessible, you would need to implement security to keep people from the table, or encrypt the password before storing it.

pam0566
07-15-2008, 01:38 PM
How about hiding PART of the field... like to hide all but last 4 digits of a SS# or CC#?