Как создать кнопку надстройки в окне «Новое сообщение» и окне «Входящие» Outlook 2007 с помощью VSTO.
Этот код добавляет кнопку в главное окно Outlook 2007.
//Define the existent Menu Bar
menuBar = this.Application.ActiveExplorer().CommandBars.ActiveMenuBar;
//Define the new Menu Bar into the old menu bar
newMenuBar = (Office.CommandBarPopup)menuBar.Controls.Add(
Office.MsoControlType.msoControlPopup, missing,
missing, missing, false);
Я использую Visual Studio 2005 с VSTO для Office 2007