Change event to a repeating event

  • Thread starter Thread starter John Marshall, MVP
  • Start date Start date
J

John Marshall, MVP

Outlook 2003's import feature does not seem to support recurring events.

I have imported about 500 trivia events, so my question is; How do I convert
all the events of a specific category to events that occur yearly?

John... Visio MVP
 
Am Wed, 26 Jul 2006 12:48:49 -0400 schrieb John Marshall, MVP:

John, loop through the folder´s items and call that sample for each item
that you´d like to change:

Private Sub MakeAppointmentRecurrence(Item As Outlook.AppointmentItem)
Dim rp As Outlook.RecurrencePattern
Set rp = Item.GetRecurrencePattern
rp.RecurrenceType = olRecursYearly
Item.Save
End Sub
 
Back
Top