Question:
How can I set up a SetPoint so that when the user is typing any password, its characters are not displayed, only asterisks (*) instead?
Solution:
In this case, you will have to use a TextBox object (as seen below), and not a SetPoint.
Then, you will only need to insert a “mask” character, in this case the asterisk (*), at PasswordChar property.
NOTE: alternatively, you can also add a TextBox to the application by right-clicking the Screen and selecting Insert\MSForms\TextBox menu.