Changing passwords from a form?

R

Rick B

I have built a database that allows users to look at their records only. It
automomatically opens one form and they can't close it. They can't see the
database window. Basically very secure. These users will only do one
function.

I would like to add a button to this one form that allows them to change
their password. Since they can't get to the database window, they can't get
to the menu to change it.

Is there code I can enter on a button to bring up the change password dialog
box?

Thanks!

Rick B
 
L

Lynn Trapp

Private Sub cmd_change_password_Click()
DoCmd.RunCommand acCmdUserAndGroupAccounts
End Sub
 
R

Rick B

Thanks, Lynn!!

Rick B

Private Sub cmd_change_password_Click()
DoCmd.RunCommand acCmdUserAndGroupAccounts
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top