COMPILER
DOWNLOAD
ORDER
CONTACT US
HELP
F.A.Q.
Reorder Ribbon Tabs
Use code similar to this one to change order of the Ribbon Tabs:
With Application.Ribbon .Tabs(TAB_PRINT).Index = .Tabs(TAB_OPTIONS).Index - 1 End With
It puts
Print
tab before
Options
tab.
Index
property defines place of the Tab inside the Ribbon.