When working in DayView the following line executes with no problem
this.ultraCalendarInfo1.Appointments.Add(someAppointment);
But when I execute the same code in MonthView it does not increment the appointment collection. anybody can tell What is the problem here?
The likeliest explanation is that the CalendarInfo property of the UltraMonthViewSingle control is not set to reference this.ultraCalendarInfo1, while that of the UltraDayView is.
Brian Fallon"]The likeliest explanation is that the CalendarInfo property of the UltraMonthViewSingle control is not set to reference this.ultraCalendarInfo1, while that of the UltraDayView is.
Exactly. This was the reason for my problem.