473,625 Members | 2,770 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 6611
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******** *************@n ews2.telusplane t.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******** ******@TK2MSFTN GP09.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******** ******@TK2MSFTN GP09.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******** *****@TK2MSFTNG P11.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******** ******@TK2MSFTN GP09.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
11012
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
3699
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 the string "Select name From users Where password = PASSWORD('$testPass')" and ran mysql_query() using the string. But nothing was returned. So I decided to run a test and try to change a password from my php page using the string
27
3130
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, so the pass could be sent to a corresponding e-mail address? Greetings Frizzle.
2
1773
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 action='http://username:password@url.com/passworddirectory/' but that doesn't work. Thanks,
4
4155
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 storing this sensitive info as plain text and one-way hashing is not an option because I need the actual passwords. I’ve done some quick research and it seems that symmetric encryption algorithms (blowfish, AES…) provide a reasonable solution—I...
7
161300
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... ########################################### package MySQL-client-5.0.24a-0.glibc23 is already installed package MySQL-server-5.0.24a-0.glibc23 is already installed
0
1929
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 following peace of code, which uses Pexpect for the same. The mentioned Poc may certainly help others, incase they need some requirement like this. import pexpect, sys if len(sys.argv) != 3: print "Usage: "+sys.argv+" user new_password." ...
2
1239
by: sridhar537 | last post by:
examples to explain the following terms: 1. Password complexity. 2. Password aging. 3. Password usage. 4. Password storage.
1
2164
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 " + textBox6.Text.ToString() + " ON PRIMARY " + " (NAME = " + textBox6.Text.ToString() + ", " + " FILENAME = '" + path + "' ,"
0
8253
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8189
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8354
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8497
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6116
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5570
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4089
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
1802
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1499
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.