473,406 Members | 2,956 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Hide ribbon and navigation pane in access 2007

I have created acess db which use by number of user So i want to hide ribbon navigation pane for all user but are visible for me login as admin . inshort i want to not any one can make change in setting and code of my db without me. please suggest any method which i can
follows.
Jan 28 '16 #1
4 1732
jforbes
1,107 Expert 1GB
Expand|Select|Wrap|Line Numbers
  1. 'Hide
  2. '====
  3.     ' Nav Pane
  4.     DoCmd.NavigateTo "acNavigationCategoryObjectType"
  5.     DoCmd.RunCommand acCmdWindowHide
  6.  
  7.     ' Ribbon
  8.     DoCmd.ShowToolbar "Ribbon", acToolbarNo
  9.  
  10. 'Show
  11. '====
  12.     ' Nav Pane (or F11)
  13.     DoCmd.SelectObject acTable, , True
  14.  
  15.     ' Ribbon
  16.     DoCmd.ShowToolbar "Ribbon", acToolbarYes
Jan 28 '16 #2
zmbd
5,501 Expert Mod 4TB
keep in mind
anyone with more than basic knowledge of access can bypass/undo this...
Jan 28 '16 #3
HOW CAN I STOP BYPASS ACTION and set any combination of keys to show ribbon
Feb 4 '16 #4
jforbes
1,107 Expert 1GB
Here are some interesting discussions on disabling the Bypass function:
https://bytes.com/topic/access/answe...en-file-access
https://bytes.com/topic/access/answe...ive-bypass-key

You can't fully keep anyone out of an Access Database. This is what zmdb is getting at and the above threads address. You just can't with Access alone.

Access was designed to be a Desktop Database, not an Enterprise Database, so it is relying on the same security that other Desktop applications rely on which is pretty much NTFS, a file based security. There are lots of little things you can do to protect your data and your code, but there is no Enterprise solution for an Access database. The most secure it can be is to put the Database on a NTFS Partition on a Server and then restricting the access to the Database based on Windows User Authentication.

If you need more than this, there are lots of options, but my personal favorite is to move the data to SQL Server with Windows Authentication and then publish a .MDE version of the Database for the Users. That way access to the Data is controlled by the Network Admin. But that might be more work than you want to deal with.
Feb 4 '16 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

27
by: Wayne | last post by:
I've been clicking around Access 2007 Beta 2 and can't see the custom menu bar designer. Is it in the beta? Maybe I'm blind. The question that comes to mind is: Will custom menu bars be the same...
5
by: Ira Solomon | last post by:
Hi: Any quick opinions on Access 2007? Has anyone got this to coexist with Access 2003? Thanks Ira
2
by: Wayne | last post by:
I've been having a click around Access 2007 this afternoon and have discovered some things that range from annoying to alarming. My Access 2003 menu bars, which I, like many others, use...
5
by: Patrick | last post by:
I have set the Navigation Pane so that it is not displayed on startup of my application. However, if I programmatically link to an external Access table, the navigation pane automatically...
6
by: tony.abbitt | last post by:
I have recently installed Office 2007 (SP1) retaining the previous installation of Office 2003. I have converted an Access 2003 database to Access 2007. The database contains the VBA code...
2
by: Bob | last post by:
Hi, In runtime environement my access 2007 application dont show the Navigation Pane, anybody have this problem ? Thank's for reply Bob
1
by: hype261 | last post by:
So I have done a bunch of work with the ribbon control in Access 2007 and I know I can put in callbacks for a combo box so that its values will be created at runtime when the ribbon is first loaded. ...
2
by: Mihail | last post by:
Hy ! I use following code to print out a report WITHOUT open it Private Sub cmdPrintReportRAM_Click() DoCmd.SelectObject acReport, "ReportName", True DoCmd.PrintOut acPrintAll, , , , , 1...
11
by: imahhua | last post by:
I am not a programmer and I usually use macro to fulfill some small functions. This time I use a Macro of "SendObject" to send report as Pdf format. it is working well when I test it while...
2
RockKandee
by: RockKandee | last post by:
I am using Access 2013 in Windows 8. The security features are gone (grumble, grumble). While I understand that those feature were not really security, they did have value. My goal is simply to...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.