Appointments Recurrences

M

Mihai Grosu

Hi NG

I want to sync outlook with my prog. I put the Appointments i get from
outlook in my Database.
I have ab Problem with the recurrences:
All the recurences have the same EntryID. My PrimaryKey in the table IS the
EntryID....
I want to get all appointments in a period. "normal" appointments AND
recurrences...

Witch ist the best way??

Greetings
 
K

Ken Slovak - [MVP - Outlook]

A master appointment has a recurrence pattern that is used to calculate all
individual occurrences and an Exceptions collection for exceptions.
Individual occurrences don't actually exist. If you iterate an Items
collection make sure to set the Boolean IncludeRecurrences property to get
them all.

But be aware that an unlimited series of recurrences will top out at the
limit of a 32 bit int, so your collection can get huge.

The EntryID problem can't be helped since all the recurrences are actually
on the master appointment of the series. You may have to rethink that part.
 

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