This example displays a message that describes how the search criteria will be evaluated in a file search.
With Application.FileSearch.PropertyTests(1)
If .Connector = msoConnectorAnd Then
MsgBox "All search criteria will be combined."
Else
MsgBox "Criteria will be treated independently"
End If
End With