![]() |
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. |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
![]()
Hi,
I have some VBA code to search Outlook Journal items, I use something like this (adapted from vbs): 'Create Outlook, Namespace, Journal Objects and Task Item olFolderJournal = 11 Set objOutlook = CreateObject("Outlook.application") Set objNameSpace = objOutlook.GetNameSpace("MAPI") Set objJournal = objNameSpace.GetDefaultFolder(olFolderJournal) Set MyOriginalItems = objJournal.Items 'Loop through all journal items, create list of projects and remove unwanted items from list nproj = 0 For Each CurrentItem In MyOriginalItems examine Currentitem, etc next This code finds items in the default file (Outlook.pst), but it does not find items in another pst file (archive1.pst). How can I modify my code so it searches both pst files (and possible others)? As you can see, I am clueless regarding Outlook's handling of pst files. Thanks, Gabriel |
#2
|
|||
|
|||
![]()
All stores in the current session, regardless of whether they are PST or
something else, are accessible through the Namespace.Folders collection, which contains the top level folders of all the stores. You will need to recursively (or not, if you only handle the default Journal folders) loop through the folders in that collection and process folders with the DefaultItemType property = 4. Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool "G.R. Toro" wrote in message ... Hi, I have some VBA code to search Outlook Journal items, I use something like this (adapted from vbs): 'Create Outlook, Namespace, Journal Objects and Task Item olFolderJournal = 11 Set objOutlook = CreateObject("Outlook.application") Set objNameSpace = objOutlook.GetNameSpace("MAPI") Set objJournal = objNameSpace.GetDefaultFolder(olFolderJournal) Set MyOriginalItems = objJournal.Items 'Loop through all journal items, create list of projects and remove unwanted items from list nproj = 0 For Each CurrentItem In MyOriginalItems examine Currentitem, etc next This code finds items in the default file (Outlook.pst), but it does not find items in another pst file (archive1.pst). How can I modify my code so it searches both pst files (and possible others)? As you can see, I am clueless regarding Outlook's handling of pst files. Thanks, Gabriel |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Using Multiple Outlook Files | [email protected] | Outlook - General Queries | 1 | June 22nd 07 05:39 AM |
Multiple contacts files | pegdc | Outlook - Using Contacts | 6 | March 19th 07 08:49 PM |
Multiple Copies of *.pst files | baffled_ken | Outlook - Using Contacts | 1 | February 28th 07 10:39 PM |
Multiple pst files | John A Hansen | Outlook - General Queries | 5 | February 27th 07 06:49 PM |
Emailing Multiple Files to Multiple People | [email protected] | Outlook - General Queries | 4 | November 22nd 06 11:43 PM |