The contact picture is an attachment on the item. You would have to go
through the Attachments collection of the item and find the picture that
way.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm
"Alexander" <(E-Mail Removed)> wrote in message
news:3A3DC50E-B883-47BC-BEEB-(E-Mail Removed)...
>I am trying to use the office interop to retrieve a contact photo for a
>given contact if available
>
> I am able to iterate thru my contacts:
>
> Outlook.ContactItem contact =
> (Outlook.ContactItem)contacts.Items[i];
>
> and i am able to check if a contact has a contact photo:
>
> if(contact.HasPicture)
>
> but i have no idea how i can get access to the ContactPhoto and i been
> googling with no luck????
>
>
>
>