extra security for access

  • Thread starter Thread starter dennis_89
  • Start date Start date
D

dennis_89

I am wondering if there is a way to password protect a
form in Access even after setting up user-level
security. The form contains credit card info and needs
to be very secure, so that only one person can see it and
will be prompted for a password before accessing it.

thanks
 
A very simple password protection would be to include code
along the following lines in the form's Open eventhandler
If InputBox("Please enter Password") <> "Pswd" Then
Msgbox "Invalid Password", vbOkOnly
Cancel = True
End If

You would need to prevent your users from open the VB
editor as the password would be easily found in the code.

Hope This Helps
Gerald Stanley MCSD
 
I am having login problems on many sites, including attempting to re-install windows.
When I enter the code from my disks box I got the message invalid code.
be back with more info later
 
This is a Microsoft Access newsgroup. Your question does not seem to
pertain to creating a databse in Microsoft Access, so we would not be of any
help here.


I am having login problems on many sites, including attempting to re-install
windows.
When I enter the code from my disks box I got the message invalid code.
be back with more info later
 
Back
Top