sender name

T

toocool

Hi,

Is there a way to find items sent by anyone? I mean I use
Set myItem = myItems.Find("[SenderName] = 'Gates Bill'") and it works.
But Can I write something like ... ='*'") or so to find all senders,

Or can I somehow find items based on recipient's name. When I write
RecipientsName, says there's no such object.

Thanx
 
K

Ken Slovak - [MVP - Outlook]

You cannot use wildcards in a Find or Restrict clause.
Recipients.Item(x).Name is a valid property but you cannot restrict on a
Recipients collection.
 
Top