Hot do I prevent display of an entry e.g. a password?

D

DevalilaJohn

Assuming that you have the field on a form so that users can enter their
password, i can suggest two things:

Set your font color and textbox color to be the same or
Set the font on input to Wingdings. Assuming that you will have code
handling the input, it will see the inputs as normal characters
There are probably
 
D

Douglas J. Steele

Much preferable, I think, would be to set the text box's Input Mask to
"Password" (without the quotes)
 
R

Rick Brandt

DevalilaJohn said:
Assuming that you have the field on a form so that users can enter their
password, i can suggest two things:

Set your font color and textbox color to be the same or
Set the font on input to Wingdings. Assuming that you will have code
handling the input, it will see the inputs as normal characters
There are probably

There actually is a built in handler. Just set the input mask to "Password" and
it will display asterisks as you type.
 
Top