How do i add appointments from within code-behind. Something like the following:
Meaning, no source code (database, generic list etc. etc.). Just a simple loop.
Thank you
Dim startdate As DateTime = DateTime.Parse("9/16/2011") For i As Integer = 1 To 12 startdate = startdate.AddMonths(1) ' pseudo code:
MyScheduler.Appointments.Add(startdate) NextMeaning, no source code (database, generic list etc. etc.). Just a simple loop.
Thank you