VBA Search in Outlook

后端 未结 2 1523
自闭症患者
自闭症患者 2020-12-03 02:16

I have this code to search in my folder. I do have a e-mail with the \"sketch\" subject, but VBA is not finding it (it goes to the ELSE clause)

Can anybody tell wha

2条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-03 02:33

    Here is a way to do the search using Items Restrict.

    This runs fast and you do not need to loop through the items to find the items that match the search criteria.

    Sub Search_Inbox()
    
    Dim myOlApp As New Outlook.Application
    Dim objNamespace As Outlook.NameSpace
    Dim objFolder As Outlook.MAPIFolder
    Dim filteredItems As Outlook.Items
    Dim itm As Object
    Dim Found As Boolean
    Dim strFilter As String
    
    
    Set objNamespace = myOlApp.GetNamespace("MAPI")
    Set objFolder = objNamespace.GetDefaultFolder(olFolderInbox)
    
    strFilter = "@SQL=" & Chr(34) & "urn:schemas:httpmail:subject" & Chr(34) & " like '%sketch%'"
    
    Set filteredItems = objFolder.Items.Restrict(strFilter)
    
    If filteredItems.Count = 0 Then
        Debug.Print "No emails found"
        Found = False
    Else
        Found = True
        ' this loop is optional, it displays the list of emails by subject.
        For Each itm In filteredItems
         Debug.Print itm.Subject
        Next
    End If
    
    
    'If the subject isn't found:
    If Not Found Then
        'NoResults.Show
    Else
       Debug.Print "Found " & filteredItems.Count & " items."
    
    End If
    
    'myOlApp.Quit
    Set myOlApp = Nothing
    
    End Sub
    

提交回复
热议问题