I programming an Outlook 2003 Plugin with VS2003.
How can i retrieve the MAPIFolder in wich is a specific ContactItem
stored? any ideas?
The ContactItem.Parent property returns the folder where an item is stored.

Signature
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
>I programming an Outlook 2003 Plugin with VS2003.
>
> How can i retrieve the MAPIFolder in wich is a specific ContactItem
> stored? any ideas?
maka - 17 Nov 2005 07:42 GMT
thank you all. it works fine.
MAPIFolder mFolder = (MAPIFolder) ContactItem.Parent;
Item.Parent is the MAPIFolder where Item lives.

Signature
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm
>I programming an Outlook 2003 Plugin with VS2003.
>
> How can i retrieve the MAPIFolder in wich is a specific ContactItem
> stored? any ideas?