I need to show upcoming appointments from today to 7 days ahead. This works fine when the appointment is not recurring.
This works fine for non recurring appointments:
For Each a In RadScheduler1.Appointments.GetAppointmentsInRange("2011-03-21", "2011-03-28") ...add appointment data to table. NextWhile this also works with recurring appointments:
For Each a In RadScheduler1.Appointments ...add appointment data to table. Next Now, is there a way to include any occurrences (from all recurring appointments) that meets the given period even if the Recurring appoinment Start date is before the given period?