Select/Unselect items in ActiveExplorer by code?

  • Thread starter Heinz-Josef Bomanns
  • Start date
H

Heinz-Josef Bomanns

Good morning,

is there any way to select or unselect items in ActiveExplorer by
code? For e.g. there are five mails selected by the user, i process
each mail in my add in through a loop like this:

for each Item in ActiveExplorer.Selection
'Do something with the mail
if SomeCondition = True then
Item.Selected = False 'Is something like this possible?
'or perhaps Item.Unselect?
end if
next Item

After the loop is done there should remain for e.g. two mails
selected. Second example:

for each Item in ActiveExplorer.CurrentFolder
if SomeCondition = True then
Item.Selected = True 'Select the mail
'or perhaps Item.Select?
end if
next Item

This should select mails in ActiveExplorer based on criterias checked
for each mail. Thanks for any hints or suggestions...
 
K

Ken Slovak - [MVP - Outlook]

The ability to do that was added to the object model in Outlook 2010. In
earlier versions of Outlook there's no way to do that.
 
H

Heinz-Josef Bomanns

Hallo Ken,
The ability to do that was added to the object model in Outlook 2010. In
earlier versions of Outlook there's no way to do that.

Thanks, was afraid of that :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top