Link to home
Start Free TrialLog in
Avatar of SambaCor
SambaCor

asked on

Customizing ribbon in Access 2010

When I use these codes bellow it work perfectly on Access 2007.
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
   <ribbon startFromScratch="true">
      <qat>
         <sharedControls>
            <control idMso="ImportExcel" />
            <control idMso="ExportExcel" /
            -----More controls-------
         </sharedControls>
      </qat>
   </ribbon>
</customUI>

But whenI now use the followoing codes for Access 2010. It doesn't work
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
   <ribbon startFromScratch="true">
    <backstage>
      <qat>
         <sharedControls>
            <control idMso="ImportExcel" />
            <control idMso="ExportExcel" /
            -----More controls-------
         </sharedControls>
      </qat>
    </backstage>
   </ribbon>
</customUI>

Can someone tell me what am I doing wrong?
Thanks!
Avatar of colevalleygirl
colevalleygirl
Flag of United Kingdom of Great Britain and Northern Ireland image

If you don't already know of it, the best resource I am aware of for customising the ribbon is at http://www.accessribbon.de/en/

Can you be more explicit about what doesn't work?
Avatar of SambaCor
SambaCor

ASKER

question closed!
Could you share the solution?
ASKER CERTIFIED SOLUTION
Avatar of SambaCor
SambaCor

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
It work perfect for what I trying to accomplised! Thanks to all the oarticipants.
Thank you so much - very helpful.
I did have to change the following:

From:    <control idMso="Past" />
To:    <control idMso="Paste" />

and

From:<control idMso="FilterBySection" />
To:<control idMso="FilterBySelection" />