Add a button to correct spelling to a custom ribbon (1 Viewer)

zelarra821

Registered User.
Local time
Today, 20:45
Joined
Jan 14, 2019
Messages
813
Hello.

I have the following custom ribbon:

Code:
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">

<ribbon startFromScratch="true">
<tabs>
<tab id="T001" label="Salir">
<group id="T001G001" label="Salir">
<button id="Salir" label="Salir" imageMso="MasterViewClose" size="large" supertip="Cerrar la base de datos" onAction="rbSalir" />
</group>
</tab>
</tabs>
</ribbon>

<!--Configuramos la Pestaña Archivo (Access 2010)-->
<backstage>
<button idMso="FileCloseDatabase" visible="false"/>
<button idMso="SaveObjectAs" visible="false"/>
<button idMso="FileSaveAsCurrentFileFormat" visible="false"/>
<button idMso="FileOpen" visible="false"/>
<button idMso="FileSave" visible="false"/>
<tab idMso="TabInfo" visible="false"/>
<tab idMso="TabRecent" visible="false"/>
<tab idMso="TabNew" visible="false"/>
<tab idMso="TabPrint" visible="false"/>
<tab idMso="TabOfficeFeedback" visible="false"/>
<tab idMso="TabShare" visible="false"/>
<tab idMso="TabHelp" visible="false"/>
<button idMso="ApplicationOptionsDialog" visible="false"/>
<button idMso="FileExit" visible="false"/>
<tab idMso="TabSave" visible="false"/>
<tab idMso ="TabOfficeStart" visible="false"/>
</backstage>

</customUI>

What I want is to add the button to correct the spelling, that is, this:

ScreenShot001.jpg

I'm looking for a Microsoft Office Excel where there was information regarding the ribbons but I can't find it. I can't find anything that solves the problem on Google either.

Do you know how I can add that button?

Thank you so much.
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Tomorrow, 02:45
Joined
May 7, 2009
Messages
19,245
you can ofcourse add the "whole" Group

Code:
<group idMso="GroupRecords" />
on your RibbonXML
 

Users who are viewing this thread

Top Bottom