InputBox Formatting

  • Thread starter Thread starter Olga Kantor
  • Start date Start date
O

Olga Kantor

Does anyone know how to assign a password input mask to an
InputBox object?

Thanks a lot,
Olga
 
Olga Kantor said:
Does anyone know how to assign a password input mask to an
InputBox object?

You can't. You have to design your own form to use instead of the InputBox.

Open it using the acDialog option. This causes the calling code to pause until the
form is closed.

Include a Cancel button that closes the form and an OK button that only hides it.
Either one of these cause your calling code to resume running.

You can then test to see if the form is still open (though hidden). if it is you
know they pressed [OK] and you can pull the entry they made from the form and then
close it. If the form is not open then you know they pressed [Cancel] and can drop
out of the routine.
 
Olga,
You can't!!!
Make your own unbound form and add a text control.
Use the Password input mask on this control.
 

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

Inputbox Value Reference 3
Input box question 2
InputBox 4
If ActiveCell has a comment then exit sub 22
Hidi keyed input with asterisk 3
inputbox for a combobox (easy) 3
InputBox 1
InputBox InputMask 2

Back
Top