Ribbon + navigation pane lock/Hide on loading...

HRakibul

Registered User.
Local time
Tomorrow, 00:09
Joined
Feb 10, 2014
Messages
41
hi guys,
i need to hide/Disable my ribbon and Navigation pane on loading. And my default display form will shown on loading.

And off course a Security Warning!! shown on loading that Disable some of my content and my code.

I need to stop the Security warning. and when i give Password to my Default form my ribbon and Navigation pane will be visible.

Anybody out there can help me:banghead::banghead::banghead:
 
Did you try a google search on for example
access hide the ribbon
 
hi Cronk,
yeah i ve tried access hide the ribbon from google, i have found mything indeed. but still i am facein some error massage. like after ur suggestion i have seen the sight , http://msdn.microsoft.com/en-us/library/office/ff837012(v=office.15).aspx

according to the rules i have done everything, but now it is showing error message given in my pic.

please see this i am adding my db file too
 

Attachments

  • test.accdb
    test.accdb
    500 KB · Views: 280
  • ribbon error.png
    ribbon error.png
    51.1 KB · Views: 284
Hi

XML is written with errors. See the correct writing and compare with yours.

Code:
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon startFromScratch="true" />
</customUI>
 
hi guys,
i need to hide/Disable my ribbon and Navigation pane on loading. And my default display form will shown on loading.

And off course a Security Warning!! shown on loading that Disable some of my content and my code.

I need to stop the Security warning. and when i give Password to my Default form my ribbon and Navigation pane will be visible.

Anybody out there can help me:banghead::banghead::banghead:

Check out this link. Your problem is solved for ribbon security. I am not able to post real link becuase my post count is low so add the http prefix and www to the front of the link text below. I recently had this same problem you had and this helped me solve it.

iaccessworld <dot> com <forewardslash> how-to-disable-properties

I am still trying to figure out how to integrate the layout view and design view enable/disable into the function. Does anyone have an idea on how to automate that across all forms? NO MORE :banghead::banghead:
 
HIDE RIBBON AND NAVIGATION PANE
Access 2010+ - Hide Ribbon and Navigation Pane

Function HideShowRibbon()
SendKeys "^{F1}", True
Docmd.ShowToolBar "Ribbon",acToolBarNo
DoCmd.NavigateTo "acNavigationCategoryObjectType"
DoCmd.RunCommand acCmdWindowHide
End Function

SECURITY WARNING MESSAGE
Open Access 2013 without opening a file.
Select "File" > "Options"
On the next window, select "Trust Center".
Click on "Trust Center Settings" button.
On the next window, select "Message Bar".
Check the "Never show information about blocked content".
Click "OK" button at the bottom and close Access.
Next time you open an Access file you shouldn't get that security warning.
 

Users who are viewing this thread

Back
Top Bottom