Outlook 2000 "My Shortcuts" question

  • Thread starter Thread starter John Erickson
  • Start date Start date
J

John Erickson

If my addin is working with Outlook 2000, I'm creating a new folder under the
IPM root. Is there a way to programaticly cause that folder to appear in the
"My Folders" tab? I can have the user manually add it, but I would prefer to
add it for them. I'm not seeing a way to do that though. Is the "My Folders"
list kept in the registry somewhere or in the store or is there an Outlook
namespace call I can make to enum and add new entries? Is that list
maintained in one of the Control collections that I could add to?

John
 
Get the OutlookBarGroup.Shortcuts collection and use the Add() method of the
Shorcuts collection.

The example in the Object Browser for Shortcuts.Add() shows how to get there
using code.
 
Back
Top