Using a macro for a user-entry password - hiding the entry

E

Eddie Kirby

Is there a good way to hide the password entry when it is entered by a
user?

I have written a program which requires a password to make changes.
However, when a password is entered (example: XxBNB77T), the pass
word appears instead of **********.

Is there anyway to hide the password when it is being entered.
 
P

Per Jessen

Set up a userform, where user can enter the password in a TextBox. Use
* as PasswordChar in the Textbox properties.

Hopes this helps.
....
Per
 
D

Dave Peterson

You can use a textbox on a userform to get the info. The textbox has a
..PasswordChar property that can be used to hide the real password.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top