![]() |
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
|
|||
|
|||
![]()
Need to create a script for outlook 2007 where I can search all folders for
e-mail to a group or mail alias. Any help greatly appreciated. -- soler |
Ads |
#2
|
|||
|
|||
![]()
I wrote the VBA code below as an answer to another post. You could easy
adapt it for your own purposes:- Public Sub ScanAllFolders() Dim objFolder As MAPIFolder Dim lngItems As Long Dim lngCounter As Long Set objFolder = Outlook.GetNamespace("MAPI").GetDefaultFolder(olFo lderInbox).Parent Call ScanFolder(objFolder) Set objFolder = Nothing End Sub Private Sub ScanFolder(objMAPIFolder As MAPIFolder) Dim lngItems As Long Dim lngCounter As Long Dim objMailItem As MailItem Dim objFolder As MAPIFolder For Each objFolder In objMAPIFolder.Folders Call ScanFolder(objFolder) Next For lngCounter = 1 To objMAPIFolder.Items.Count If TypeName(objMAPIFolder.Items(lngCounter)) = "MailItem" Then Set objMailItem = objMAPIFolder.Items(lngCounter) If ")0 Then Debug.Print objMailItem.SentOn, objMailItem.Subject End If Set objMailItem = Nothing End If Next End Sub -- Alan Moseley IT Consultancy http://www.amitc.co.uk If I have solved your problem, please click Yes below. Thanks. "soler" wrote: Need to create a script for outlook 2007 where I can search all folders for e-mail to a group or mail alias. Any help greatly appreciated. -- soler |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Search through all users calenders with subject text as search criteria | Mads Westen | Outlook and VBA | 3 | August 7th 08 03:39 PM |
Search folders -- subject containing XXX *OR* Category contains "XXX" | [email protected] | Outlook - General Queries | 0 | November 21st 07 04:16 PM |
Search folders gone in Outlook 2007 | [email protected] | Outlook - General Queries | 2 | January 25th 07 01:05 AM |
Outlook 2003 - Search folders - adding criteria to an old mail search? | Dustin Emhart | Outlook - General Queries | 0 | December 20th 06 03:39 PM |
creating new mail subject folder in outlook express local folders heading | themntneer | Outlook Express | 4 | October 8th 06 02:41 AM |