Access Settings.. Apply to all users?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jmargel
    New Member
    • Feb 2008
    • 2

    Access Settings.. Apply to all users?

    I noticed when deploying an Access database on a machine with multiple accounts, you have to go into the Options (Edit/Find) and change the confirm checkboxes for each user. It makes it very difficult when not only you have multiple users but multiple machines. You must do this on each machines for every user.

    Is there a way to apply this globally so I don't need to go into access for every user on each machine?

    This happens on all versions of access.
  • sierra7
    Recognized Expert Contributor
    • Sep 2007
    • 446

    #2
    Hi
    You can do something like ;-
    Code:
     Application.SetOption "Confirm Action Queries", False 
    Application.SetOption "Confirm Document Deletion", False
    Application.SetOption "Confirm Record Changes", False
    in your opening form, if that is the type of thing you mean.

    (You can set then to True when you need)

    S7

    Comment

    Working...