473,503 Members | 2,435 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Password Usage

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
Jul 17 '05 #1
5 6600
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


Jul 17 '05 #2

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.
"HB" <fr*****@telus.net> wrote in message
news:8M*********************@news2.telusplanet.net ...
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

Jul 17 '05 #3
HB
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" <SM******@MVPS.org> wrote in message
news:Oq**************@TK2MSFTNGP09.phx.gbl...
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

Jul 17 '05 #4
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.
HB wrote:
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" <SM******@MVPS.org> wrote in message
news:Oq**************@TK2MSFTNGP09.phx.gbl...
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

Jul 17 '05 #5
HB
AWESOME - Thanks

"Sandra Daigle" <SM******@MVPS.org> wrote in message
news:ek*************@TK2MSFTNGP11.phx.gbl...
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.
HB wrote:
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" <SM******@MVPS.org> wrote in message
news:Oq**************@TK2MSFTNGP09.phx.gbl...
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

Jul 17 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
10988
by: Geoff Muldoon | last post by:
Hi all, Help please. Environment: Unix (Tru64) / Apache / PHP4.0.6 / Oracle8i Establish connection to Oracle: for ($I=0; $I<$max_attempts; $I++) {
11
3686
by: John Victor | last post by:
In my mysql database, I've stored all the passwords using the PASSWORD() function. Now I'm running a test and need to compare the password in my php document to that saved in the database. I used...
27
3113
by: frizzle | last post by:
Hi there, I've read in a few places that you should *never* store original passwords in a mySQL DB. Now i wonder if you encrypt it (with MD5 ?), how should i create a lost password function,...
2
1762
by: nyclamusician | last post by:
The action URL to my form is a page that is password protected (standard password protected directory). What would I need to do to authenticate? I've tried ...
4
4150
by: Alvaro G. Vicario | last post by:
I’m writing a web application that needs to keep passwords in a database. These passwords are for third-party services and are different from the regular login passwords. I don’t like...
7
161286
by: rajbala.3399 | last post by:
Hi , I want to download sql in my linux system........... # rpm -ivh MySQL-server-5.0.24a-0.glibc23.i386.rpm MySQL-cl ient-5.0.24a-0.glibc23.i386.rpm Preparing... ...
0
1926
by: geoharish | last post by:
Dear All, I started using Python just a few days back and there was a requirement of an assigned project to change the user Password through script without user interaction. I could write the...
2
1232
by: sridhar537 | last post by:
examples to explain the following terms: 1. Password complexity. 2. Password aging. 3. Password usage. 4. Password storage.
1
2159
by: little83 | last post by:
Dear all can I set a password for each mdf sql database file...or the password for the whole server.. I used the follwoing string string query = " CREATE DATABASE " +...
0
7188
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7313
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
7441
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5558
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
4987
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3156
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3146
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1489
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
720
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.