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