Hi
i knw the ribbon has some predefined styles as office 2000 and windows vista,
it's posible to change the ribbon style at run time just selecting the style from a combo box?
Thanks.
PAVCBC,
The code you are using is actually a circular reference- the Ribbon.ToolbarsManager property is the UltraToolbarsManager that the Ribbon is a part of. The simpler way to accomplish this would be:
TB1.Style = ToolbarStyle.OfficeXP
~Kim~
dont know if this the right way but is working for me
Case
"OfficeXP"
TB1.Ribbon.ToolbarsManager.Style = ToolbarStyle.OfficeXP
Thanks