Auto set Menu Options

  • Thread starter Thread starter Stephen sjw_ost
  • Start date Start date
S

Stephen sjw_ost

Hello again,

Can someone direct me to some sample code, if its possible and/or available,
to set Menu Options via code?
I want to be able to set the security option to low and uncheck the action
query option on the start up of my DBs so that I, and my coworkers, will not
have to set this each time we use the DB at a different location.

Thank you for all of your help
Stephen
 
Not sure of the parameters to set security options. I think it will be
something like
DoCmd.SetMenuItem ........

To turn off confirmation of action queries, use the following code
Application.SetOption "Confirm Action Queries", False
 
The code for Confirm Action Queries is 1 part I have been searching for.

I'm not sure how to use the SetMenuItem for setting the security options, or
other options, but I want to try and look it up in the help files before
requesting further aid with it.

Thank you very much for your response.
Stephen
 
Back
Top