View Single Post
  #1  
Old October 13th 09, 06:11 AM posted to microsoft.public.outlook.program_addins
Heinz-Josef Bomanns
external usenet poster
 
Posts: 10
Default Select/Unselect items in ActiveExplorer by code?

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...


--

So long...
...Bomi

!!! In case you want to reply via email please use Reply-To address and remove underscores (_) !!!

Ads