Questions about Accde

DCrake

Remembered
Local time
Today, 11:51
Joined
Jun 8, 2005
Messages
8,626
Hi All
I have just made my first accde in 2007 - suprising I know - anyway when I launch the app I can still click on the Access Options icon (top left) and see the "Access Options" button for the accde. Is there anyway of hiding this feature as it seems to me to allow access to certain items that I would not want them to change.

Ideally I would like to hide it completely. If this can be done. How?
 
I use this to hide/unhide the ribbon and navigation pane...

Code:
DoCmd.ShowToolbar "Ribbon", acToolbarNo
DoCmd.ShowToolbar "Ribbon", acToolbarYes

DoCmd.RunCommand acCmdWindowHide
DoCmd.SelectObject acTable, , True
 
Also, I believe that unchecking the Use Default Menus will hide the Access Options.
 

Users who are viewing this thread

Back
Top Bottom