views:

134

answers:

2

I am writing an application with ribbon in Delphi. I don't know what are these tabs called technically, but is there any way that I can have tabs that are added when a condition is met and have a different color? Just like the one when you insert a shape in Word 2007 ("Format" tab) that comes at the end of all the tabs and is dynamic (appears in run-time)?

+2  A: 

They are called "Context Tabs", and if I'm not mistaken, they are not supported currently.

Moritz Beutel
+1  A: 

We looked at this when the Ribbon control was first introduced in Delphi. They were not supported in the original ribbon control with Delphi, but I haven't checked to see if they are supported in newer versions.

We looked at the Ribbon controls from DevExpress and TMS, and adopted the TMS cxomponents, as theirs was the only one (at that time) that supported the feature.

Looking at their websites, TMS shows this feature being used, while DevExpress doesn't mention it. Check the TMS AdvToolBar component

Alistair Ward
Thanks. That was helpful. I'll check it out.
Flom Enol