Looking to change the name of the ribbon tab on the UItraToolbar Manager from "Ribbon1" or "Ribbon2"
I can;t see to find where I need to change them
Hello Colin,
To change the name of the ribbon tab on the UItraToolbar Manager from "Ribbon1" or "Ribbon2" you have to go through the ribbon tab collection and change its caption.
The code would be like this:
this.ultraToolbarsManager1.Ribbon.Tabs[0].Caption = "Ribbon2";
Please let me know if you need further assistance.