Using winforms scheduler and would like to get the listing of occurrences from the rrule.
Dim hrly As Telerik.WinControls.UI.HourlyRecurrenceRule = Me.Appointment.RecurrenceRule
The webforms version has an occurrences property, but not the winforms version. I wold like to do something like this.
For Each occurrence As DateTime In hrly.Occurrences
Console.WriteLine("" & Chr(9) & "{0}", occurrence)
Next
Any ideas
Later
Art.