tags:

views:

52

answers:

1

I know how to iterate through non-recurring appointments in Outlook.

My question is, how to I iterate through Outlook appointments including the recurring appointments?

Thank you.

A: 

If you are open to using 3rd party libraries, I'd suggest using "Redemption" library (http://www.dimastr.com/redemption/). This library has useful RDOFolder2 interface with GetActivitiesForTimeRange method.

Here you can find more information about usage of this interface: (http://www.dimastr.com/redemption/rdo/rdofolder.htm)

If you don't want to use 3rd party library and need to stick to Outlook API, the trick is to set IncludeRecurrences flag to true before iterating appointments. The following article should provide enough information on how to do that: (http://www.outlookcode.com/article.aspx?id=30)

Andrew Mochalskyy