Identify the Outlook folders(name) from VB

  • Thread starter Thread starter Sachin Shakya
  • Start date Start date
S

Sachin Shakya

Hi,
How to identify the Outlook folders from VB, as for
different language setting, the name of the folder changes
for example in English settings: Inbox but in Dutch
setting: Postvak Inn. So i have to identify the folder,
when looping through the folders.

Thx.
 
Get the EntryID's and compare. Get the default Inbox for example using
NameSpace.GetDefaultFolder(olFolderInbox). Get it's EntryID and
compare it to the folders you get in your loop.
 
Back
Top