S
Scott Lichtenberg
I'm trying to create a custom print preview ribbon to use in an application
that is going to be run under the Access 2007 runtime. I am able to put a
Send as Attachment button onto the ribbon, and it shows up when I open my
reports (in the full version of Access). However, when I open the reports
under the runtime, the ribbon shows up without the Send button. I've listed
the code for the toolbar below.
Is there a reason why the Send button doesn't show up in the runtime, and
more importantly, is there a work-around.
As always, thanks for any help.
Scott
RibbonXML
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon startFromScratch="true">
<tabs>
<tab idMso="TabHomeAccess" visible="false"/>
<tab id="dbCustomTab" label="Print Preview" visible="true">
<group id="Print" label="Print">
<control idMso="PrintPreviewClose" label="Close Print Preview"
enabled="true" size ="large"/>
<control idMso="PrintPreviewZoomMenu" label="Zoom" enabled="true" size
="large"/>
<control idMso="FileSendAsAttachment" label="Email" enabled="true" size
="large"/>
</group>
</tab>
</tabs>
</ribbon>
</customUI>
that is going to be run under the Access 2007 runtime. I am able to put a
Send as Attachment button onto the ribbon, and it shows up when I open my
reports (in the full version of Access). However, when I open the reports
under the runtime, the ribbon shows up without the Send button. I've listed
the code for the toolbar below.
Is there a reason why the Send button doesn't show up in the runtime, and
more importantly, is there a work-around.
As always, thanks for any help.
Scott
RibbonXML
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon startFromScratch="true">
<tabs>
<tab idMso="TabHomeAccess" visible="false"/>
<tab id="dbCustomTab" label="Print Preview" visible="true">
<group id="Print" label="Print">
<control idMso="PrintPreviewClose" label="Close Print Preview"
enabled="true" size ="large"/>
<control idMso="PrintPreviewZoomMenu" label="Zoom" enabled="true" size
="large"/>
<control idMso="FileSendAsAttachment" label="Email" enabled="true" size
="large"/>
</group>
</tab>
</tabs>
</ribbon>
</customUI>