help in Password

R

Renato Bacani

is it possible to set a Password button inside a form to open another
form?..imagine i have 2 forms..a student form and a account form..what
password coding should i do if i want to switch from student form to account
form...is it possible?..please help....thanks
 
T

Tom Ventouris

This is not very sophisticated, but here it is:

Create two unbound text boxes on the first form.
Set the default value on the first text box to the password, and set Viable
to NO
Create the button to open the second form with an If....statement. If the
value of the second unbound text box is the same as the first, open the
second form, else some error message.

Assuming you distribute in MDE with a project password, this will keep a
novice out.
 
Top