password field

T

Tom

hi,

I've got a question about password fields. The users of my database have to
enter a password to acces a certain form. They have to enter the password in
an InputBox of a form. But when they enter the password, you can read it. Now
my question is: is it possible to display '*****' when they enter a password?

Thank you very much,
Tom
 
A

Allen Browne

You can do that very easily if you create a little unbound form, and use
that instead of the InputBox.

Just set the Input Mask of the text box on the form to:
Password.
 
Top