Excel VBA - input box text display

  • Thread starter Thread starter mel41099
  • Start date Start date
M

mel41099

I have a macro that has an input box that asks for your password - an
when I type it in, I would like ***** to show up on the display, rathe
than what I am actually typing.

Is there a way to do this?

Thanks!!
-Meliss
 
Use a textbox on a userform and size it to look like an inputbox. Set the
passwordchar property of the Textbox to *
 
Back
Top