Hello,
I customized ribbon for a pivot chart form using the below given code - it displays the only required buttons.
However, when I disable "allow full menus" only empty tab is displayed.
How can it be fixed?
Ribbon's XML seems to be correct and the form's "RibbonName" property is also defined.
I attached an image showing the problem.
MS Access 2007
Thank you for any suggestions.
Code:
<!-- Piovot chart ribbon -->
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon startFromScratch="true">
<tabs>
<tab id="PivotChartTools" label="Narzędzia wykresu">
<group id="ChartTools" label="Narzędzia wykresu">
<toggleButton idMso="PivotFieldList" label="Lista dostępnych pól" size="large"/>
<toggleButton idMso="PivotDropAreas" size="large"/>
<toggleButton idMso="PivotChartLegendShowHide" label="Pokaż legendę" size="large"/>
</group>
</tab>
</tabs>
</ribbon>
</customUI>