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,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Is there a way to get an INPUT BOX to show Password style formatti 2
Input mask 4
Input Mask 1
Input Box 4
Masking input in InputBox 2
Input mask & auto-tab 1
Asterisk entry in input box 1
Input Masking 6

Back
Top