Custom Ribbon - ExportExcel not showing

L

Lisab

I created a custom ribbon for an access 2007 application.

I use the same code in two different applications

The Export to Excel, Export to Word and Export to Text buttons are missing
the ribbon appears in one of the applications. Everything appears in the
other

below is the xml I am using. Is there a setting or something I missed in
the application with the missing ribbon buttons?

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon startFromScratch="true">
<tabs>
<tab id="tabPrintPreview" label="Print Preview">

<group id="grpPrint" label="Print" visible="true">
<button idMso="PrintDialogAccess" size="large" />
<button idMso="PageSetupDialog" size="large"/>
</group>

<group id="myExportGroup" label="OutPut To" visible="true">
<button idMso="ExportExcel" size="large" />
<button idMso="ExportWord" size="large"/>
<button idMso="ExportTextFile" size="large"/>
</group>

<group id="grpZoom" label="Zoom">
<splitButton idMso="PrintPreviewZoomMenu" size="large"/>
<toggleButton idMso="ZoomFitToWindow" size="large"/>
<toggleButton idMso="ZoomOnePage" size="large"/>
<toggleButton idMso="PrintPreviewZoomTwoPages"
size="large"/>
</group>

<group id ="mySortGroup" label ="Sort and Filter">
<toggleButton idMso="FilterToggleFilter" />
<menu idMso="SortSelectionMenu" />
<menu idMso="FilterAdvancedMenu" />
</group>

<group id="grpClosePreview" label="Close" visible="true">
<button idMso="PrintPreviewClose" size="large" />
</group>

</tab>
</tabs>
</ribbon>
</customUI>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top