How to get the Message of the Recurrence from Outlook 2003

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

Iam trying to get the message of reccurrence set in an Appointment Item
using outlook 2003.

I am also facing the problem of getting which option is selected in the
Recurrence window "Range of Recurrence" when End after or End By is Selected.

I will be glad if somebody guides me how to do that.

Thanks in advance
 
If oAppt is the appointment then:

If oAppt.IsRecurring Then
Set oRecur = oAppt.RecurrencePattern

Use the Object Browser to see the properties of the RecurrencePattern and
what they mean. How they are translated into the pattern properties may not
exactly match how things look in the user interface in the recurrence
dialog.
 
Back
Top