A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook - Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Faster Folder traversal



 
 
Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1  
Old February 20th 09, 07:22 PM posted to microsoft.public.outlook.program_forms
Ray
external usenet poster
 
Posts: 51
Default Faster Folder traversal

I'm having a performance problem with an Outlook AddIn. We need to find all
the MailItems – fast. The solution below is very slow due to “x as
Outlook.Item” call.

Is there a faster way to do this?

IEnumerableOutlook.MailItem GetAllMail(Outlook.Folders folders)
{
foreach (Outlook.MAPIFolder f in folders) {
foreach (var e in GetAllMail(f.Folders)) {
yield return e;
}
foreach (var x in f.Items) {
var e = x as Outlook.MailItem;
if (e != null) {
yield return e;
}
}
}
}

 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Is there a faster way to get to auto correct? Takes 4 steps now! renee98277 Outlook - General Queries 1 June 15th 08 04:29 AM
Cannot display the folder. Microsoft Office Outlook cannot access thespecified folder location. Boppy Outlook - General Queries 1 December 19th 07 01:16 AM
Access my saved forms faster goss Outlook - General Queries 0 April 18th 07 04:06 PM
activate contact folder from public folder with "show this folder as email address book using a prf file Frankie K. Outlook - Using Contacts 7 July 25th 06 06:37 PM
suggest: Color coding of email shortcut folders for faster filing mrkie Outlook - Installation 0 January 26th 06 04:31 PM


All times are GMT +1. The time now is 09:18 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright 2004-2025 Outlook Banter.
The comments are property of their posters.