Setting an Exception Deleted

  • Thread starter Thread starter Darren Kennedy
  • Start date Start date
D

Darren Kennedy

How can I set up a deleted exception to an appointment
programmatically? Ie. Repeats every day for the next 20
days, except on Xmas.

The Deleted property is read only, so there must be
another way.

Thanks,

Darren
 
Use GetOccurrence to get that occurrence of the set of appointments,
then use the Delete method on that item: Set oItem =
oAppt.GetRecurrencePattern.GetOccurrence(#12/25/2003#), oItem.Delete.
 
Back
Top