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
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