Mask on an Input Box?

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
 
C

Cheryl Fischer

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


Top