PDA

View Full Version : Ribbon Issues



philfer
04-06-2014, 06:34 AM
Hello,

I want to completely hide all the ribbons in Access so the user uses my forms to do all tasks. For the life of my I can get the "Home" ribbon tab to not show.

I have tried :-

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon startFromScratch="true">
<officeMenu>
<button idMso="FileCloseDatabase" visible="false"/>
<button idMso="FileNewDatabase" visible="false"/>
<button idMso="FileOpenDatabase" visible="false"/>
<button idMso="FileExit" visible="false"/>
</officeMenu>
</ribbon>
</customUI>


then I tried

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon startFromScratch="true">
</ribbon>
</customUI>


and I even tried

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon startFromScratch="true">
<tabs>
<tab idMso="TabHomeAccess" visible="false" />
</tabs>
</ribbon>
</customUI>


but each time the "Home" ribbon and the quck access toolbar still shows.

It is a split DB so I am not sure if that affects it.

Cheers
Phil