Password Usage

  • Thread starter Thread starter HB
  • Start date Start date
H

HB

Please Help

In my application I need the user to type their password everytime they
perform a certain task. I am using the inputbox function for this but anyone
looking over their shoulder can read their password as they type. Is their a
way I can cause a * to show instead of the actual letters?

Thanks in advance.

Brian
 
Hi-

In design view of the form, open the properties window for the control where
the user enters their password. Go to the data tab and use the Input mask
wizard to assign a password mask for this control.

HTH-- Betsy W.
 
Instead of using the Inputbox function you should probably create a custom
form and for the password field set the InputMask property to 'Password'.
 
Thanks Sandra & Betsy

I previously tried that bu since I was calling the form from a form module
in VB code, It would open the form and continue the VB code without waiting
for a typed password. Is there a way I can use docmd openform ... then wait
for the response, then continue the calling code where it left off?

Thanks again

Brian




Sandra Daigle said:
Instead of using the Inputbox function you should probably create a custom
form and for the password field set the InputMask property to 'Password'.

--
Sandra Daigle
[Microsoft Access MVP]
For the benefit of others please post all replies to this newsgroup.

Please Help

In my application I need the user to type their password everytime
they perform a certain task. I am using the inputbox function for
this but anyone looking over their shoulder can read their password
as they type. Is their a way I can cause a * to show instead of the
actual letters?

Thanks in advance.

Brian
 
Yes, use the acDialog option of the Windowmode parameter of the openform
command. This will suspend the code until the opened form is either
hidden or closed.

docmd.OpenForm "frmMyForm",,,,,acDialog

--
Sandra Daigle
[Microsoft Access MVP]
For the benefit of others please post all replies to this newsgroup.

Thanks Sandra & Betsy

I previously tried that bu since I was calling the form from a form
module in VB code, It would open the form and continue the VB code
without waiting for a typed password. Is there a way I can use docmd
openform ... then wait for the response, then continue the calling
code where it left off?

Thanks again

Brian




Sandra Daigle said:
Instead of using the Inputbox function you should probably create a
custom form and for the password field set the InputMask property to
'Password'.

--
Sandra Daigle
[Microsoft Access MVP]
For the benefit of others please post all replies to this newsgroup.

Please Help

In my application I need the user to type their password everytime
they perform a certain task. I am using the inputbox function for
this but anyone looking over their shoulder can read their password
as they type. Is their a way I can cause a * to show instead of the
actual letters?

Thanks in advance.

Brian
 
AWESOME - Thanks



Sandra Daigle said:
Yes, use the acDialog option of the Windowmode parameter of the openform
command. This will suspend the code until the opened form is either
hidden or closed.

docmd.OpenForm "frmMyForm",,,,,acDialog

--
Sandra Daigle
[Microsoft Access MVP]
For the benefit of others please post all replies to this newsgroup.

Thanks Sandra & Betsy

I previously tried that bu since I was calling the form from a form
module in VB code, It would open the form and continue the VB code
without waiting for a typed password. Is there a way I can use docmd
openform ... then wait for the response, then continue the calling
code where it left off?

Thanks again

Brian




Sandra Daigle said:
Instead of using the Inputbox function you should probably create a
custom form and for the password field set the InputMask property to
'Password'.

--
Sandra Daigle
[Microsoft Access MVP]
For the benefit of others please post all replies to this newsgroup.


HB wrote:
Please Help

In my application I need the user to type their password everytime
they perform a certain task. I am using the inputbox function for
this but anyone looking over their shoulder can read their password
as they type. Is their a way I can cause a * to show instead of the
actual letters?

Thanks in advance.

Brian
 
Back
Top