Ribbon Customization - Export to Excel button

  • Thread starter Thread starter j_gold
  • Start date Start date
J

j_gold

Hi,

I've been unsuccessful at getting the Export to Excel button to show up in
my ribbon.

All other buttons show up. Here is the code I'm using, can anyone spot why?

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon startFromScratch="false">
<tabs>
<tab idMso="TabCreate" visible="false" />
<tab id="dbCustomTab" label="MyTab" visible="true">
<group id="dbCustomGroup" label="Excel Functions">
<control idMso="ImportExcel" label="Import from Excel"
enabled="true"/>
<control idMso="ExportExcel" label="Export to Excel"
enabled="true"/>
</group>
<group id="dbCustomGroup2" label="Database">
<control idMso="DataRefreshAll" label="RefreshAll" enabled="true"/>
</group>
</tab>
</tabs>
</ribbon>
</customUI>
Thanks
 
J_gold:

i just copied and pasted what you have, the ribbon has import/export on the
"Mytab" of the Ribbon. so no issues on this end, not sure what you are
getting.
Are you changing the forms ribbon name property to use this ribbon?
 
Back
Top