up vote 1 down vote favorite
share [g+] share [fb]

I am using Delphi 2010 to implement an Application Menu for my ribbon control... but there is a recent documents list (or at least the title of it) on the right hand side of it...

Is it possible to hide this list and put something else there instead, like I am thinking of a list of available functions...

Will this violate the term of use of the ribbon control?

Thanks a lot.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Yes, you can change TRibbon.ApplicationMenu.Caption property to change the caption of that list, and you can also change TRibbon.ApplicationMenu.CommandType to "ctCommands" to provide a list of your favorite commands rather than Recent Documents.

link|improve this answer
I've tried changing the command to ctCommands but somehow is still appear as a recent list... don't know why? – Snackmoore Dec 7 '09 at 1:36
It works fine for me, just change the CommandType to ctCommands, then add your commands to TRibbon.ApplicationMenu.Menu.RecentItems. They will be listed as commands in Recent Documents list. – vcldeveloper Dec 7 '09 at 22:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.