password appear as ****

  • Thread starter Thread starter Cindy
  • Start date Start date
C

Cindy

What code or property do I change in my input box module
so that when I type in the password it shows as stars (**)


Thanks,
 
Cindy said:
What code or property do I change in my input box module
so that when I type in the password it shows as stars (**)

Set the text box's InputMask property to Password.
 
Cindy said:
What code or property do I change in my input box module
so that when I type in the password it shows as stars (**)

You can't do it with the built-in InputBox function. Instead, you can
use a form, opened in dialog mode, with a text box that has its Input
Mask property set to "Password".
 
Back
Top