How to make an user password expires after 90 days (1 Viewer)

musmoniem

Member
Local time
Today, 09:41
Joined
Apr 30, 2020
Messages
30
I had a access database i made table with usernames & passwords of users .. and i need to make these passwords expires after 90 days ... any help please
 

Attachments

  • adding permissions for every user.accdb
    1.2 MB · Views: 148

June7

AWF VIP
Local time
Yesterday, 23:41
Joined
Mar 9, 2014
Messages
5,470
Have a field with date password last changed. Have code when user logs in to calculate elapsed days.
 

June7

AWF VIP
Local time
Yesterday, 23:41
Joined
Mar 9, 2014
Messages
5,470
After user provides valid credentials, do a lookup on the DateChange field and calculate if 90 days have passed. If so then require user to provide a new password. Open a form bound to Users and open to this user's record. They enter new password. Code sets value of DateChange field.

Me!DateChange = Date()

The code will likely get quite complex so when you have specific issue, post question.
 

Users who are viewing this thread

Top Bottom