A family of Microsoft relational database management systems designed for ease of use.
You didn't copy my XML properly.
The error is complaining about idMSO and my XML had it switched to idMso.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
I'm trying to create a custom ribbon.
Based on the microsoft help page, I came out with this XML code:
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon startFromScratch="True">
<tabs>
<tab id="Home" label="Home" visible="true">
<group id="Main" label="Main">
<button id="menu" label="Main Menu"
size="large" imageMSO="BlogHomePage"/>
</group>
<group id="Print" label="Print">
<button idMSO="FilePrintPreview"/>
<button idMSO="FilePrintQuick"/>
</group>
<group id="Export" label="Export">
<button idMSO="ExportExcel"/>
</group>
<group id="Close" label="Close">
<button idMSO="WindowClose"/>
</group>
</tab>
</tabs>
</ribbon>
</customUI>
that I copy passed as is in the RibbonXML field of the USysRibbon
When I exit and reenter the database, I got all those nice errors:
the same errors will spout for:
Line 4 Column 34
Line 12 Column 46
Line 15 Column 41
Line 18 Column 41
Line 13 Column 44
Line 12 Column 44
Line 11 Column 46
Line 16 Column 41
Line 3 Column 34
Line 19 Column 41
Whatever that means.
What could this mean?
Thanks for your help.
A family of Microsoft relational database management systems designed for ease of use.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
You didn't copy my XML properly.
The error is complaining about idMSO and my XML had it switched to idMso.
Answer accepted by question author
This will at least get you started
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
<ribbon startFromScratch="True">
<tabs>
<tab id="Home" label="Home" visible="true">
<group id="Main" label="Main">
<button id="menu" label="Main Menu"/>
</group>
<group id="Print" label="Print">
<button idMso="FilePrintPreview"/>
<button idMso="FilePrintQuick"/>
</group>
<group id="Export" label="Export">
<button idMso="ExportExcel"/>
</group>
<group id="Close" label="Close">
<button idMso="WindowClose"/>
</group>
</tab>
</tabs>
</ribbon>
</customUI>
Try changing True to true.