1._I found that there are lots of Outlook.AppointmentItem like below:
Outlook.RecurrencePattern Pattern = master.GetRecurrencePattern();
int iCount = Pattern.Occurrences; // iCount tells me there are lots of Outlook.AppointmentItem
so how can i get all the Outlook.AppointmentItem(Outlook.Items) with "Outlook.RecurrencePattern"?
2._I also try to another method to find all items. we can find the exact item like below:
Outlook.AppointmentItem cItem= (Outlook.AppointmentItem)oApps.Application.Session.GetItemFromID(mEntryID, mFolderID);
how to get this series of Outlook.AppointmentItem? (PS: Outlook.AppointmentItem is a sub-item, because these items are recurrence)
i'm not familiar with office program, so i need some help. thanks.