Disable Design view

Pusher

BEOGRAD Put
Local time
Today, 07:21
Joined
May 25, 2011
Messages
230
Hi all,
How do i disable design view on my report – i want to secure my reports so when in report view you cant get in to design view.
Thanks
 
Which version of Access are you running. Makes a difference in the instructions.
 
access 2007
 
With your database open, click on the Office Button in the upper left corner. Click on the Access options button at the bottom of the window. Click on the Current Database Tab.

On the Navigation Section, uncheck the Display Navigation Pane.

On the Ribbon and Toolbar Options, uncheck the Allow Full Menus, uncheck Allow Default Shortcut Menus and uncheck Built-in Toolbars.

On the Applications Options, in the box for Display Form, put the name of the form that you want to open when Access Launches as this will be the only way you can drive the bus.

Your users will see no ribbon menus or navigation panes. They will not be able to change any forms, queries or tables or reports unless you make it available using command buttons and other objects.

As a developer, if you need to access any of the "hidden" objects, you will need to open the database by clicking on the name of the file while holding down the Shift Key. You should not inform your users about this.

Alan
 
Is there a way to disable the shortcut menus (ONLY) through VBA? If yes can you provide the code for it?
 
Hi

Disable through the event "Open" form

Private Sub Form_Open(Cancel As Integer)
Me.ShortcutMenu = False
End Sub
 
With your database open, click on the Office Button in the upper left corner. Click on the Access options button at the bottom of the window. Click on the Current Database Tab.

On the Navigation Section, uncheck the Display Navigation Pane.

On the Ribbon and Toolbar Options, uncheck the Allow Full Menus, uncheck Allow Default Shortcut Menus and uncheck Built-in Toolbars.

On the Applications Options, in the box for Display Form, put the name of the form that you want to open when Access Launches as this will be the only way you can drive the bus.

Your users will see no ribbon menus or navigation panes. They will not be able to change any forms, queries or tables or reports unless you make it available using command buttons and other objects.

As a developer, if you need to access any of the "hidden" objects, you will need to open the database by clicking on the name of the file while holding down the Shift Key. You should not inform your users about this.

Alan
10-year-old post helped me out today. Thanks.
 

Users who are viewing this thread

Back
Top Bottom