Changing passwords from a form?

  • Thread starter Thread starter Rick B
  • Start date Start date
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
 
Private Sub cmd_change_password_Click()
DoCmd.RunCommand acCmdUserAndGroupAccounts
End Sub
 
Thanks, Lynn!!

Rick B

Private Sub cmd_change_password_Click()
DoCmd.RunCommand acCmdUserAndGroupAccounts
End Sub
 
Back
Top