Hi There
I have only just started playing around with Microsoft Office Custom IU Editor and am having a little trouble getting some of my custom buttons / Groups into the right place.
I currently have 2 separate add-ins that I have created and want to either get them both into the Add-Ins tab, or get them both into a single, new custom tab.
My Custom UI editor code for one of the add-ins is as follows:
Any help would be appreciated.
I have only just started playing around with Microsoft Office Custom IU Editor and am having a little trouble getting some of my custom buttons / Groups into the right place.
I currently have 2 separate add-ins that I have created and want to either get them both into the Add-Ins tab, or get them both into a single, new custom tab.
My Custom UI editor code for one of the add-ins is as follows:
PHP:
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon startFromScratch="false">
<tabs>
<tab idMso="TabAddins" >
<group id="NewGroup1" label="WIP Management Tools">
<button id="Button1" label="Setup Workbook" size="normal" onAction="SetupWorkbook"
imageMso="BlogPublish"/>
</group>
</tab>
</tabs>
</ribbon>
</customUI>
Any help would be appreciated.
Last edited: