I'm updating an Outlook 2003 plugin to Outlook 2010, and am henceforth dealing with the ribbon.
I already know how to add a new group in the ribbon, via a ribbon.xml file.
But I don't know how to customize an existing ribbon, i.e. add a new entry in the 'New items' dropdown button.
I guess one can do it by knowing the right idMso's.
For what it's worth, the project is a .NET 4 VSTO one.
Any idea on this?
Something like this doesn't workn, the GroupMailNew group may be read only, after all:
<tab idMso="TabMail">
<group idMso="GroupMailNew">
<menu idMso="MailNewItemMenu">
<button id="fooID" label="Foobar"/>
</menu>
</group>
</tab>
I believe you'll find the answer here:
This specific example shows how to add a command to the New Items dropdown button.