Is it possible to add new items to the 'new' menu,including icons?

  • Thread starter Thread starter Ken Slovak - [MVP - Outlook]
  • Start date Start date
K

Ken Slovak - [MVP - Outlook]

You can add items to the File menu or other Outlook menus. Just get
the menu you want as a CommandBar, get its Controls collection and use
the Add method. Make sure anything you add is added as temporary.

The context menus are not accessible.

You can use CDO's Session.AddressBook method to display contacts and
return CDO Recipient objects. You can also use Extended MAPI with C++
or Delphi, or you can use Redemption (www.dimastr.com/redemption)
which is a COM wrapper for Extended MAPI.

For an excellent example of a COM addin that handle command bars as
well as showing Outlook COM addin best practices, see the ItemsCB
sample addin on the Resources page at www.microeye.com
 
Is it possible to add new menu items to the File->New menu,and to the New
button?
Is it possible to add new menu item to the context menu(when clicking right
button on message for example)

Assuming outlook address books contains many enteries,which is the best way
to use in order
that my application let the user to choose contacts,should i use MAPI\C++?

Thanks in advance.
 
Back
Top