Question Hiding Ribbon but allowing Add-Ins

Strikertom

New member
Local time
Today, 11:54
Joined
Jan 17, 2014
Messages
9
Hello all,

I am quite stuck at the moment in access 2010, I have a database where I have disabled the File tab using the below HTML code in a USysRibbons table, which works as intended (stolen from a post on here), But I would still like access to show the Add-Ins tab on the ribbon. How would I go about doing this.

<customUI xmlns="
<ribbon startFromScratch="true">
<tabs>
<tab id="tabPrintPreview" label="Report">
<group id="grpPrint" label="Printer" visible="true">
<button idMso="PrintDialogAccess" size="large" label="Print" imageMso="PrintDialogAccess" />
<button idMso = "PublishToPdfOrEdoc" size="large" label="PDF"/>
</group>

<group id="grpZoom" label="Zoom" >
<splitButton idMso="PrintPreviewZoomMenu" size="large" visible="true"/>
<toggleButton idMso="ZoomFitToWindow" size="large"/>
<toggleButton idMso="ZoomOnePage" size="large"/>
<toggleButton idMso="PrintPreviewZoomTwoPages" size="large"/>
</group>
<group id="grpClosePreview" label="Close report" visible="true">
<button idMso="PrintPreviewClose" size="large" label="Close" imageMso="PrintPreviewClose"/>
</group>
</tab>
</tabs>
</ribbon>
</customUI>

The reason I am asking is that the Add-Ins tab shows my custom tool bars that allow search and print functions for the user.

Thank you in advance.
Tom
 

Users who are viewing this thread

Back
Top Bottom