Inputbox with Password view

S

Stephane Pelletier

Hi,

I need to ask a password for different part of my
program. I know I can either use a form or the command
Inputbox to do so.

Form : create a field and then change the inputmask
property to Password (That would do the trick ... but)

So ... is it possible to use the inputbox command (to ask
the password) and having a password configuration.

Meaning ... anyone near the keyboard will only see *** as
the password is typed, instead of the real password.

If it is possible to do so ... How can I do it?

ex: MyString=inputbox("Enter password") (What else do I
need to not see the ouput on the screen?)


Thanks for your help,

Stephane Pelletier
 
F

fredg

Hi,

I need to ask a password for different part of my
program. I know I can either use a form or the command
Inputbox to do so.

Form : create a field and then change the inputmask
property to Password (That would do the trick ... but)

So ... is it possible to use the inputbox command (to ask
the password) and having a password configuration.

Meaning ... anyone near the keyboard will only see *** as
the password is typed, instead of the real password.

If it is possible to do so ... How can I do it?

ex: MyString=inputbox("Enter password") (What else do I
need to not see the ouput on the screen?)

Thanks for your help,

Stephane Pelletier

The built-in Access Input Box cannot be changed.
You'll have to use a form.
Open the form in acDialog so processing will wait until the password
is entered.
 
G

Guest

THANKS
-----Original Message-----
The built-in Access Input Box cannot be changed.
You'll have to use a form.
Open the form in acDialog so processing will wait until the password
is entered.

--
Fred
Please only reply to this newsgroup.
I do not reply to personal email.
.
 

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 InputMask 2
Security question 5
InputBox 1
Password Box 4
Entering Password using Inputbox 5
Password 2
How to set password to open form 1
Masking - Form Password 1

Top