Hi,
I have a custom ribbon in access 365, which I want to be the first tab on the ribbon, but its stuck in last position, any ideas?
Thanks,
Steve
I have a custom ribbon in access 365, which I want to be the first tab on the ribbon, but its stuck in last position, any ideas?
Rich (BB code):
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" onLoad="OnRibbonLoad">
<ribbon startFromScratch="false">
<tabs>
<tab id="tDistribution" insertBeforeMso="TabHome" label="Distribution" visible="true">
<group id="gMenu" label="Menu">
<button id="bMenu" label="Main Menu" size="large" imageMso="OpenStartPage" onAction="mMain"/>
</group>
<group id="gMoves" label="Moves">
<button id="bAdd" label="Add Movement" size="large" imageMso="RmsSendBizcardDesign" onAction="mAdd"/>
<button id="bAddM" label="Add Multiple" size="large" imageMso="ViewSlideSorterView" onAction="mAddMultiple"/>
<button id="bAmend" label="Amend Movement" size="large" imageMso="RmsSendBizcard" onAction="mAmend"/>
<button id="bFull" label="Full Movement Details" size="large" imageMso="ControlsGallery" onAction="mFull"/>
</group>
</tab>
</tabs>
</ribbon>
</customUI>
Thanks,
Steve