Change password

tedward

Registered User.
Local time
Today, 09:33
Joined
Oct 17, 2009
Messages
15
How might i allow users to change their user login password access 2007.
Following is the simple code that I use for the ctrl button.

Private Sub Command2_Click()
If Me.Text0 = "named password" Then
DoCmd.OpenForm "Form name"
DoCmd.Close acForm, "frmpassword"
Else
MsgBox "Incorrect password, please contact the Administrator"
DoCmd.Close acForm, "frmpassword"
End If
End Sub


Any help will be appreciated,
Thanx
 

Users who are viewing this thread

Back
Top Bottom