Hide input keystrokes

M

martin

Can an input box be customized in vba to hide the input keystrokes with dots
or astericks, like a password input box?
 
J

Jezebel

No. But you can create a userform that looks just like an input box. Put a
textbox on the form and set its PasswordChar property to asterisk or
whatever you want to have appear.
 
Top