Is there one document that I can download that describes all the idMso
commands in the Outlook ribbons or is there a utility like Spy for Ribbons?
"Ken Slovak - [MVP - Outlook]" wrote:
The ribbon controls are not in the CommandBars collection. You need to use
the XML schema for Outlook to know what XML to write for your ribbon
controls and to handle built-in controls in the ribbon. You then set up
callbacks for the things exposed by the schema and make all of your
customizations that way.
You can download the ribbon schemas from the Office developer Web site.
There are also samples there for how to use the ribbon.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm
"John Erickson" wrote in message
...
Hi,
I'm trying to repurpose some of the controls on the mail inspector ribbon.
Are the ribbon controls available in the Office::_CommandBars collection?
If
so, under which control are they located? I've looked in the most obvious
one. The one called "Ribbon", but at the time the NewInspector event
triggers
I only see one control listed under that collection. Are they added after
the
NewInspector event? If so, when is the ideal time to look for them?
John