Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
My Print Ribbon does not appear with 2010 Runtime version
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  5 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
PW  
View profile  
 More options Mar 16 2012, 4:03 pm
Newsgroups: comp.databases.ms-access
From: PW <emailaddyin...@ifIremember.com>
Date: Fri, 16 Mar 2012 14:03:46 -0600
Local: Fri, Mar 16 2012 4:03 pm
Subject: My Print Ribbon does not appear with 2010 Runtime version
Hi,

It appears and works with the ACCDE, and ACCDB (both with the shift
key and by clicking on the database).

Allow Full Menus is checked for the current database in backstage.

Here is the code:

<ribbon startFromScratch="true">
    <tabs>
      <tab id="tabReportOptions" label="Report Print and View
Options">
        <group idMso="GroupPrintPreviewPrintAccess" />
        <group idMso="GroupPageLayoutAccess" />
        <group idMso="GroupZoom" />
        <group idMso="GroupPrintPreviewData"/>
        <group idMso="GroupPrintPreviewClosePreview" />
      </tab>
    </tabs>
   </ribbon>

Any ideas? Do I have to make my own print tab in the main ribbon for
these print options to be available?  Right now I have a main ribbon
and a print ribbon (as above).

-paul


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Albert D. Kallal  
View profile  
 More options Mar 16 2012, 9:29 pm
Newsgroups: comp.databases.ms-access
From: "Albert D. Kallal" <PleaseNOSpamkal...@msn.com>
Date: Fri, 16 Mar 2012 19:29:39 -0600
Local: Fri, Mar 16 2012 9:29 pm
Subject: Re: My Print Ribbon does not appear with 2010 Runtime version
What you have should work.

I assume you specify this ribbon in the "other" tab setting for all reports.

In addition, you do have the show UI errors turned on so that any errors in
the xml shows up?\

And last but not least, you posted xml looks fine, but you are missing the
xml heading part - I assume this was just left out for this post?

The full xml you need is thus:

<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
   <ribbon startFromScratch="true">
    <tabs>
      <tab id="tabReportOptions" label="Report Print and View
Options">
        <group idMso="GroupPrintPreviewPrintAccess" />
        <group idMso="GroupPageLayoutAccess" />
        <group idMso="GroupZoom" />
        <group idMso="GroupPrintPreviewData"/>
        <group idMso="GroupPrintPreviewClosePreview" />
      </tab>
    </tabs>
   </ribbon>
</customUI>

The above should work just fine in runtime.

--
Albert D. Kallal
Edmonton, Alberta Canada
PleaseNoSpam_kal...@msn.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
PW  
View profile  
 More options Mar 16 2012, 10:10 pm
Newsgroups: comp.databases.ms-access
From: PW <emailaddyin...@ifIremember.com>
Date: Fri, 16 Mar 2012 20:10:05 -0600
Local: Fri, Mar 16 2012 10:10 pm
Subject: Re: My Print Ribbon does not appear with 2010 Runtime version
Hi Albert!

>What you have should work.

>I assume you specify this ribbon in the "other" tab setting for all reports.

Yes, I used that awesome code of yours to update every report's
property to use the report ribbon.

>In addition, you do have the show UI errors turned on so that any errors in
>the xml shows up?\

Yes.  But maybe my wife's PC does not.  I will check it out.

>And last but not least, you posted xml looks fine, but you are missing the
>xml heading part - I assume this was just left out for this post?

Yeah, I had butter fingers.

That is what I have.

RibbonXML
"<customUI
xmlns=""http://schemas.microsoft.com/office/2009/07/customui"">
  <ribbon startFromScratch=""true"">
    <tabs>
      <!-- Thanks Albert Kallal in comp.databases.ms-access for
this!!! Where did he get the Group prefix? -> AccessControls.xls
download from
http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=6627
-->
      <tab id=""tabReportOptions"" label=""Report Print and View
Options"">
        <group idMso=""GroupPrintPreviewPrintAccess"" />
        <group idMso=""GroupPageLayoutAccess"" />
        <group idMso=""GroupZoom"" />
        <group idMso=""GroupPrintPreviewData""/>
        <group idMso=""GroupPrintPreviewClosePreview"" />
      </tab>
    </tabs>
    </ribbon>
</customUI>"

>The above should work just fine in runtime.

I googled this problem and did see some replies from you but I don't
think the problem was ever solved without extra coding.

http://social.msdn.microsoft.com/Forums/en-US/accessdev/thread/daab1f...
http://social.msdn.microsoft.com/Forums/en-US/accessdev/thread/f679de...

-paul


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
PW  
View profile  
 More options Mar 19 2012, 1:54 pm
Newsgroups: comp.databases.ms-access
From: PW <emailaddyin...@ifIremember.com>
Date: Mon, 19 Mar 2012 11:54:41 -0600
Local: Mon, Mar 19 2012 1:54 pm
Subject: Re: My Print Ribbon does not appear with 2010 Runtime version
On Fri, 16 Mar 2012 19:29:39 -0600, "Albert D. Kallal"

Nope.  The Print Ribbon does not appear when a report is opened when
using the runtime version of Access 2010.  I guess I need to create a
seperate tab for the print options as part of the main ribbon and
forget about having more than one ribbon.

-paulw


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
PW  
View profile  
 More options Mar 19 2012, 2:30 pm
Newsgroups: comp.databases.ms-access
From: PW <emailaddyin...@ifIremember.com>
Date: Mon, 19 Mar 2012 12:30:38 -0600
Local: Mon, Mar 19 2012 2:30 pm
Subject: Re: My Print Ribbon does not appear with 2010 Runtime version
On Fri, 16 Mar 2012 19:29:39 -0600, "Albert D. Kallal"

It must have something to do with the commands I am using above.  My
wife found something on your website Albert (reporttoribbon2.pdf - or
something like that) where you have code in a module to deal with
various file formats (in order to email the report) and now the report
ribbon is appearing in the runtime!

-paul


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »