J
j_gold
Sorry if I have already posted this, couldn't find the post.
I am trying to get the "Export to Excel" control to show up in a custom
ribbon. Here is the code
<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>
Everything controls display except for the Export to Excel. It doesn't
appear. Any thoughts?
Thanks,
J
I am trying to get the "Export to Excel" control to show up in a custom
ribbon. Here is the code
<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>
Everything controls display except for the Export to Excel. It doesn't
appear. Any thoughts?
Thanks,
J