C Cindy Jul 5, 2004 #1 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,
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,
M Marshall Barton Jul 5, 2004 #2 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 (**) Click to expand... 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 (**) Click to expand... Set the text box's InputMask property to Password.
D Dirk Goldgar Jul 5, 2004 #3 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 (**) Click to expand... 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".
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 (**) Click to expand... 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".