Re: Using CDOEX for using exchange server from code



Hello,

as tasks officially only supported through the Outlook object model, you'll have to get names of the properties.

A good starting point is http://www.cdolive.com/cdo10.htm.

Another good way to get those propertynames is to create a task and fill in alls fields with some values. Then, use a WebDAV explorer (from the Exchange SDK or Mistaya from my website) to get the property names.

When you have the names, you can easily read them:

DateTime startDate = item.Properties.GetProperty<DateTime>(nameOfProperty).Value;

Best regards,
Henning Krause

<pavan.ananthula@xxxxxxxxx> wrote in message news:1151910063.415779.36720@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Thank you very much.

I have downloaded your WebDAV API and just went through it. Can you
please tell me how can we use it for accessing messages, tasks. Can you
please give me an example of that if you have?

-Pavan


.


Loading