Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.