Question Print Preview Default Ribbon

Sandspur

New member
Local time
Today, 11:38
Joined
Feb 15, 2013
Messages
3
Just purchased: Office 365 Home Premium

When I have the Home and Create default ribbons showing... then when I choose to Preview a report the Print Preview Ribbon is displayed and the Home and Create Ribbons are hidden or not visible.

I have created a CustomRibbon and this CustomRibbon is not hidden when I choose to preview a report. The Print Preview ribbon is shown but the CustomRibbon keeps the focus and is not hidden.

I would like for the CustomRibbon to not be visible. So that users will not get confused.


Thank you.
 
Hi

Also create a custom ribbon for reports.

Code:
<customUI xmlns="[URL]http://schemas.microsoft.com/office/2006/01/customui[/URL]"> 
<ribbon startFromScratch="true">
<tabs>
<tab id="tabPrintPreview" label="Printer">
<group id="grpPrint" label="Printer"  visible="true">
 <button idMso="PrintDialogAccess" size="large" label="Print" imageMso="PrintDialogAccess"/>
</group>
               
<group id="grpZoom" label="Zoom" >
<splitButton idMso="PrintPreviewZoomMenu" size="large" visible="true"/>
<toggleButton idMso="ZoomFitToWindow" size="large"/>
<toggleButton idMso="ZoomOnePage" size="large"/>
<toggleButton idMso="PrintPreviewZoomTwoPages" size="large"/>
 </group>
<group id="grpClosePreview" label="Close Report"  visible="true">
<button idMso="PrintPreviewClose" size="large" label="Close" imageMso="PrintPreviewClose"/>
</group>
</tab>
</tabs>
</ribbon>
</customUI>

Change the property of each report, informing the name of the ribbon.
 
I have 3 ribbons. Home, Create, CustomRibbon. It is my intent to hide the Home and Create ribbon later.

When the ribbons are minimized every thing works good. The default Print Preview has the focus. My CustomRibbon is still visible.

When the ribbons are maximized. If the Home or Create ribbon has the focus then everything works good. My CustomRibbon is still visible. If CustomRibbon has the focus then CustomRibbon is still visible and keeps the focus. The Print Preview ribbon is visible and user can switch to the Print Preview ribbon.

I have about 100 reports and was hoping I might stay with the default ribbons.
 

Users who are viewing this thread

Back
Top Bottom