Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Access 2010 Custom Ribbon

Status
Not open for further replies.

1DMF

Programmer
Jan 18, 2005
8,795
GB
Hi,

Does anyone have a list of all the default ribbon components or know how i get all the export features to be shown in a tab?

i have tried
Code:
<mso:group idQ="mso:GroupData"/>

and
Code:
<mso:group idQ="mso:GroupExport"/>

but all i get when i view a report is the option to create a PDF/XPS, i want the export to Word / XLS options as well which i get in the full version of MS Access 2010.

What XML do i need so the ribbon will always offer all posible data exports types [XLS / Word / PDF / XPS / Text / Email / HTML].

Thanks,
1DMF



"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."

"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"

Google Rank Extractor -> Perl beta with FusionCharts
 
It's OK I worked it out with the help of the MSDN forums.

Code:
<mso:tab id="mso_c2.3B5D035F" label="Export Options">
  <mso:group id="Export"  label="Export Data" >
    <mso:button idQ="mso:ExportWord" visible="true" size="large" />
    <mso:button idQ="mso:ExportExcel" visible="true" size="large" />
    <mso:button idQ="mso:ExportTextFile" visible="true" size="large" />
    <mso:button idQ="mso:ExportXmlFile" visible="true" size="large" />
    <mso:button idQ="mso:PublishToPdfOrEdoc" visible="true" size="large" />
</mso:group>
</mso:tab>

"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."

"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"

Google Rank Extractor -> Perl beta with FusionCharts
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top