How do I password protect a single form within a database

  • Thread starter Thread starter Deb
  • Start date Start date
D

Deb

Anyone know how to password a single form... ie.. I will
have a switchboard and when the user clicks on the command
button to open the form I would like a password box to
popup (just for that single form). Thanks!
 
1. Create a login form with textboxes to enter a
username/password info and a button labeled "Login" or
something like that.

2.Then open this login form from the command buttons
OnClick() event.

3.After a user enters their login information, they
click "Login", in this buttons OnClick event test that the
value entered matches proper login credentials and if so,
then open up the form you want to secure.
 
Back
Top