extra security for access

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
 
G

Gerald Stanley

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
 
E

Eric

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
 
R

Rick B

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
 

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

Top