Mask on an Input Box?

  • Thread starter Thread starter Don
  • Start date Start date
D

Don

I have a Message Box on a form in which of the users
clicks Yes, it performs the following....

If Response = vbYes Then
Password = InputBox("Please Enter the Password to
Delete the Expert", "Enter Password")

My question is......
IS there anyway to use a "mask" (i.e. ****) on an input
box, or am I forced to create another form with an unbound
text box, and then use a mask on that?

I tried looking in the help files, but could not find
anything.

Thanks in Advance for any Input.
Don
 
No, the InputBox function does not accept a mask; you will need to create
your own popup password form. On that form, use a textbox with a mask for
password entry.

hth,
 
Back
Top