Asterisk entry in input box

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...
 
M

Marshall Barton

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.
 
Top