More efficient Selected Items?

S

sonomaenterprises

Does anyone know of another way to get the list of currently selected items
in an Outlook view other than using
Application.ActiveExplorer.Selection.count?

If find that with Application.ActiveExplorer.Selection.count the
performance decreases significantly with the number of items selected.

There has to be another way of accessing these items.

Any and all ideas Please!
 
S

Sue Mosher [MVP-Outlook]

There is no other way with Outlook objects, only perhaps with Extended MAPI
(which is beyond my understanding).
 
S

sonomaenterprises

Revelation:

If you set an object to the Application.ActiveExplorer.Selection.item(i) and
use that object to access the items properties, processing is MUCH faster
than continually using Application.ActiveExplorer.Selection.item(i) to access
the items properties.

Jack
 
Top