zelarra821
Registered User.
- Local time
- Today, 20:40
- Joined
- Jan 14, 2019
- Messages
- 834
Hello.
I have the following custom ribbon:
What I want is to add the button to correct the spelling, that is, this:
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.
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:
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.