A family of Microsoft relational database management systems designed for ease of use.
Check this out:
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi All,can anyone tell me how to go about hiding a particular button on the Access Ribbon.
I am able to hide tabs (as below) but can't work out how to hide a button For instance, the table button under the create tab
Any assistance would be appreciated.
<?xml version="1.0" encoding="utf-8"?>
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="OnRibbonLoad" loadImage="onLoadImage">
<ribbon startFromScratch="true">
<tabs>
<tab idMso="TabHomeAccess" visible="true" />
<tab idMso="TabCreate" visible="true" />
<tab idMso="TabExternalData" visible="true" />
<tab idMso="TabDatabaseTools" visible="true" />
</tabs>
</ribbon>
<backstage>
<tab idMso ="TabInfo" visible="true"/>
<tab idMso="TabRecent" visible="true"/>
<tab idMso="TabOfficeStart" visible="true"/>
<tab idMso="TabSave" visible="true"/>
<tab idMso="TabPrint" visible="true"/>
<button idMso="ApplicationOptionsDialog" visible="true"/>
<tab idMso="TabOfficeFeedback" visible="true"/>
<tab idMso="TabHelp" visible="true"/>
<button idMso="FileCloseDatabase" visible="true"/>
</backstage>
</customUI>
A family of Microsoft relational database management systems designed for ease of use.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
Thanks Tom, I expected it would be something similar to hiding a tab on the file tab but it doesn't seem so. I think the line "It's not possible to change the contents of a built-in Group in the Ribbon" tells me all I need to know.
Thanks again for your assistance.