I am using ODBC tables as backend for organization's Access 2010 database. I have passworded the entry form for the treasurer's data.
What is the easiest way to set up a little form for the president of the org. to use to change the password when treasurers change?
Code:
Private Sub Form_Open(Cancel As Integer)
Cancel = (InputBox("Password?") <> "xxxx")
DoCmd.Echo False, ""
DoCmd.GoToRecord acForm, "FinAccount", acNewRec
DoCmd.Echo True, ""
End Sub
What is the easiest way to set up a little form for the president of the org. to use to change the password when treasurers change?