J
Jack
I have an application that needs to walk through the folders and determine
the folder type (contact, calendar and task) then execute a task
what I am encountering is a large delay when it walks the Exchange based
folders, regardless if the folders are cached or not.
Is there a way to have it walk through the cached folder and not hit the
server every time it does this? The latency is killing me with the current
code, listed below.
for i = 1 To gobjOutlook.Session.Folders.Count
Set MAPIFolder = gobjOutlook.Session.Folders.item(i).Folders.item(j)
blah
next
the folder type (contact, calendar and task) then execute a task
what I am encountering is a large delay when it walks the Exchange based
folders, regardless if the folders are cached or not.
Is there a way to have it walk through the cached folder and not hit the
server every time it does this? The latency is killing me with the current
code, listed below.
for i = 1 To gobjOutlook.Session.Folders.Count
Set MAPIFolder = gobjOutlook.Session.Folders.item(i).Folders.item(j)
blah
next