tags:

views:

52

answers:

1

The ActiveExplorer.Selection returns a count of 0 if the selection is a group header. Does anyone know if it's possible to enumerate the items under that group header using VBA or an add-in?

A: 

Not sure about 2007 but in 2010 this is handled by calling the GetSelection method on the Selection object and pass the OlSelectionContents.olConversationHeaders to the method. This gives a collection of conversationheaders which can then be enumerated.

cskilbeck