Add tabs to custom ribbon

coolcatkelso

Registered User.
Local time
Today, 19:02
Joined
Jan 5, 2009
Messages
279
Hiya

I have a custom ribbon that I've been working on with all the icons etc
but having issues with adding more tabs

I cirrently have this

Code:
<customUI xmlns="[URL]http://schemas.microsoft.com/office/2006/01/customui[/URL]">
<ribbon startFromScratch="true">
<tabs> <tab idMso="TabHomeAccess" visible="true"/>
<tab id="dbCustomTab" label="Add Details" visible="true">
 

<group id="Details" label="Add Details">
 
<button id="NewEmployee" label="New Employee" imageMso = "DistributionListRemoveMember" size ="large" onAction="AddEmployee"/>
<button id="NewMaterials" label="New Materials" imageMso = "AutoSum" size ="large" onAction="AddMaterials"/>
<button id="NewSupplier" label="New Supplier" imageMso = "BlogHomePage" size ="large" onAction="AddSupplier"/>
<button id="NewTeam" label="New Team" imageMso = "DatabasePermissionsMenu" size ="large" onAction="AddTeams"/>
<button id="Calendar" label="Calendar" imageMso = "AccessListCustomDatasheet" size ="large" onAction="FormBooking"/>
<button id="MyCompany" label="My Informaion" imageMso = "CreateForm" size ="large" onAction="MyCompany"/>
<button id="ExitApp" label="Exit Application"  imageMso = "PrintPreviewClose" size ="large" onAction="Exit"/>
<button id="Appointments" label="All Appointments"  imageMso = "FilePrint" size ="large" onAction="allappointments"/>
</group>
</tab>
</tabs>
</ribbon>
</customUI>

But that only gives 1 tab.. I need tabs for -

Add Details
Edit Details
Reports
System

Any ideas?
________
Box vape instructions
 
Last edited:
A little searching around the site HiTechCoach gave you should give you a lot..... but heres an example of what to look for....

<tabs>

<tab id="MyTab1" label="My Tab1">
</tab>
<tab id="MyTab2" label="My Tab2">
</tab>
<tab id="MyTab3" label="My Tab3">
</tab>

</tabs>
</ribbon>
</customUI>
 

Users who are viewing this thread

Back
Top Bottom