BTW, how does this work
Dim dtfi As DateTimeFormatInfo = CultureInfo.GetCultureInfo("en-US").DateTimeFormat
myDate = Me.Appointment.RecurrenceRule.GetOccurrenceStart(1, Now.Date, dtfi)
DTSTART:20151110T010000 DTEND:20151110T020000 RRULE:FREQ=WEEKLY;COUNT=6;BYDAY=SA;WKST=SU
This returns the start date plus the index number of days. That's useless. If the index is greater then the count, it returns a date. What am I missing here?
Later
Art