- Joined
- Nov 13, 2009
- Messages
- 1
- Reaction score
- 0
Hi,
I'm developing an Access 2007 program which will have a pivot form in it. While developing, I noticed the Export to Excel button, which I wish to incorporate into the final product. I've been able to create a customized ribbon containing the PivotExportToExcel control. And when I run the program in Access, it works great.
The problem is, when I create a package and deploy it, the ribbon tab containing that control is empty. As a test, I've change the control to a basic Paste button, and it was there. But for PivotExportToExcel, it did not come accross in the package.
Here's my XML that is in the USysRibbons table.
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon startFromScratch="false">
<tabs>
<tab id="dbCustomTab" label="A Custom Tab" visible="true">
<group id="dbCustomGroup" label="A Custom Group">
<control idMso="PivotExportToExcel" label="ExportToExcel" enabled="true"/>
</group>
</tab>
</tabs>
</ribbon>
</customUI>
I'm developing an Access 2007 program which will have a pivot form in it. While developing, I noticed the Export to Excel button, which I wish to incorporate into the final product. I've been able to create a customized ribbon containing the PivotExportToExcel control. And when I run the program in Access, it works great.
The problem is, when I create a package and deploy it, the ribbon tab containing that control is empty. As a test, I've change the control to a basic Paste button, and it was there. But for PivotExportToExcel, it did not come accross in the package.
Here's my XML that is in the USysRibbons table.
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon startFromScratch="false">
<tabs>
<tab id="dbCustomTab" label="A Custom Tab" visible="true">
<group id="dbCustomGroup" label="A Custom Group">
<control idMso="PivotExportToExcel" label="ExportToExcel" enabled="true"/>
</group>
</tab>
</tabs>
</ribbon>
</customUI>