More efficient Selected Items?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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!
 
There is no other way with Outlook objects, only perhaps with Extended MAPI
(which is beyond my understanding).
 
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
 
Back
Top