D
Dave
Is there any way to use the password property of the
dao.user class?
I want to have certain actions in my database require the
user to re-enter their password. I could just create a
table of passwords, but I would rather use the passwords
stored in the .mdw file if possible.
Any reference to the password property I have tried
produces as invalid use of property error. ie:
Dim colUsers As DAO.Users
Dim oUser As DAO.User
Dim wrkspc As DAO.Workspace
Set wrkspc = Application.DefaultWorkspaceClone
Set colUsers = wrkspc.Users
For Each oUser In colUsers
Debug.Print oUser.Name, oUser.Password = "1234"
Next oUser
dao.user class?
I want to have certain actions in my database require the
user to re-enter their password. I could just create a
table of passwords, but I would rather use the passwords
stored in the .mdw file if possible.
Any reference to the password property I have tried
produces as invalid use of property error. ie:
Dim colUsers As DAO.Users
Dim oUser As DAO.User
Dim wrkspc As DAO.Workspace
Set wrkspc = Application.DefaultWorkspaceClone
Set colUsers = wrkspc.Users
For Each oUser In colUsers
Debug.Print oUser.Name, oUser.Password = "1234"
Next oUser