Accessing custom items using Outlook API and .net

Y

ylarom

Hi

I have a C# program that scans Outlook items using the Outlook API.
To handle the different types of items I use a kind of switch:

if (oItem is Outlook.DocumentItem) ...
else if (oItem is Outlook.MailItem) ...
else if (oItem is Outlook.AppointmentItem) ...

The thing is I think I may be losing custom forms.

I take it there may be two kinds of custom items:
1. Derived from basic types, for example IPM.Contact.Employee
2. 'All-Custom', for exmample, IPM.AntiVirus

Is there a way to handle these by the Outlook API, or will I have to
resort to using CDO/MAPI?

Thanks
 
S

Sue Mosher [MVP-Outlook]

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top