Is it possible to put password when loading form/report ?

  • Thread starter Thread starter Cesar
  • Start date Start date
C

Cesar

I have form/report in my system and I want to put a security password on
that particular form/reports. More likely accessible only to the authirized
users.

Is this possible in access ?

thanks
 
I can't see why not. I would use a button to open a small form for password
entry and a button on that to open open the report if the password matches.

In the after update event I would put

If me.text = 'password' then button.enabled = true.
 
I would put that code in the on click event of the button.

If the password matches then open the report else close the password form.
 
Back
Top