commandbar button position
Hallo,
I have added a commandbar button to "standard" menu in outlook 2003.
I need to place this button on right hand side of the "new mail message" button.
How do I do that?
Thanks,
Dave
Office.CommandBar bar = (Office.CommandBar)m_Expl.CommandBars["Standard"];
/
CommandBarsMaker buttonMaker = newCommandBarsMaker();
m_pop = buttonMaker.NewMenu(bar, "test", idMenu, true, ProgID, true, "Standard", true);
m_button = buttonMaker.NewButton(m_pop.CommandBar, "New Message...", id, true, ProgID, Style, false, "My Add-In", true);
|