>> Recipient.Item(index) returns a Recipient object, which exposes a few
>> properties, such as Name, Address, Type, etc. Your code reads only the
>> default Recipient object property, which happens to be Name.
>> Use
>> myinspector.CurrentItem.Recipients.Item(t).Address
>>
>> As a side note, multiple dot notation is bad. Cache both the Recipients
>> colleciton and the Recipient object.
>> SEcondly, you are emoving drecipients in the loop, which decreases the
>> number of items in teh colleciton.
>> Loop from Count down do to 1 (step - 1) instead.
>>
>> --
>> Dmitry Streblechenko (MVP)
>>
http://www.dimastr.com/
>> OutlookSpy - Outlook, CDO
>> and MAPI Developer Tool
>> -
>> "VebKol" <VebKol@discussions.microsoft.com> wrote in message
>> news:991CEB3F-E565-45F3-905F-B5FDDAE71889@microsoft.com...