Asterisk entry in input box

  • Thread starter Thread starter maarkr
  • Start date Start date
M

maarkr

I have the following code for a simple inputbox password
scheme:

MyValue = Inputbox("Enter required password for private
information.", "User Input")

Can I add a password mask for the user input in an
inputbox so it displays ******* when the user types in the
password?

I guess I can always change it to a form display...
 
maarkr said:
I have the following code for a simple inputbox password
scheme:

MyValue = Inputbox("Enter required password for private
information.", "User Input")

Can I add a password mask for the user input in an
inputbox so it displays ******* when the user types in the
password?

I guess I can always change it to a form display...


Use your own form for this. The text box on the form can
use an InputMask set to Password to provide the astericks.
 
Back
Top