I created a suspense database with different departments on it. The goal was to not allow the Sales Department into the PR Department's stuff and so forth. After I got everything working, I set up permissions for each of the departments, restricting access only to each department's menu. I gave them access to open the database, access update the underlying tables and queries, and to the various forms. Only ... things that worked fine in development and under admin stopped working under the department.
For this Add record code from the wizard, I get a 424 Error.
Private Sub cmdAdd_Click()
On Error GoTo cmdAdd_Click_Err
DoCmd.OpenForm "frmSuspenseSales", acNormal, "", "", acAdd, acNormal
cmdAdd_Click_Exit:
Exit Sub
cmdAdd_Click_Err:
MsgBox Error.Description
Resume cmdAdd_Click_Exit
End Sub
But it still works fine under my user ID.
On a search form that you double-click to go the record, the double-click stopped working. Yet, it also still works under my user ID. Just not when I log on as a member of the Sales group. What did I miss?
Thanks!
Linda Adams (Garridon@aol.com)
"The Importance of Being Grammarian," published in The Toastmaster, March 2001
For this Add record code from the wizard, I get a 424 Error.
Private Sub cmdAdd_Click()
On Error GoTo cmdAdd_Click_Err
DoCmd.OpenForm "frmSuspenseSales", acNormal, "", "", acAdd, acNormal
cmdAdd_Click_Exit:
Exit Sub
cmdAdd_Click_Err:
MsgBox Error.Description
Resume cmdAdd_Click_Exit
End Sub
But it still works fine under my user ID.
On a search form that you double-click to go the record, the double-click stopped working. Yet, it also still works under my user ID. Just not when I log on as a member of the Sales group. What did I miss?
Thanks!
Linda Adams (Garridon@aol.com)
"The Importance of Being Grammarian," published in The Toastmaster, March 2001