Password Field

  • Thread starter Thread starter Rowland
  • Start date Start date
R

Rowland

I have an InputBox that comes up when a user clicks a
button, this button asks for a password. Problem is that
it doesn't mask the password with starts like reqular
password fields do.

How do I fix this, I am sure I could use a Text box on a
form, but I don't know the command to mask there either.

Rowland
 
Rowland,

You can't do this with a standard InputBox, but you can with your own custom
pop-up form. When you place your entry text box on it, you will find a
Password option in the InputMask builder options.

Gary Miller
 
To get that effect, you set the input mask on the textbox to Password

Input Mask: Password <<<<no quotes, no =
 
Back
Top