Is it possible to use the recurrence control to get dates without using a calendar control?
Thanks.
I have a standard form that will be used to set a specific "code" on a specific date. One of the options for setting the date is to have the code have a recurrance pattern. I am wondering if there is any way to use the recurrence form (called from your calendar control), without having it be called from your calendar control. I just want to call the recurrence form to set a date pattern, but not from the calendar control itself. Thanks.
Hello AgilysysMD,
I am not sure that I understand what exactly do you mean under “recurrence control”. Do you mean that you have a standalone control that you would like to use? If so could you please provide me more details about this control in order to be able to investigate the desired functionality further for you.
If you have any other questions please do not hesitate to ask.
Regards
Thanks for responding. Here is what I am trying to do. I have a form that I wanted to be able to add the recurrence control to. Since I'm not actually adding appointments calling the recurrence form from the calendar doesn't make sense for me.
Is this possible?
Thanks!
Have you been able to resolve your issue ? Please if you have any questions, do not hesitate to ask me
Hi,
I`m not sure what is your scenario, but maybe one possible approach is to use the code below, without adding separate UltraCalendarInfo control, but using the one from the TimeLineView itself.
AppointmentRecurrence appRec = new AppointmentRecurrence();
appRec.PatternFrequency = RecurrencePatternFrequency.Weekly;
Appointment app = new Appointment(DateTime.Today, DateTime.Today.AddMinutes(30));
app.Recurrence = appRec;
ultraTimelineView1.CalendarInfo.AllowRecurringAppointments = true;
ultraTimelineView1.CalendarInfo.Appointments.Add(app);
Please let me know if I misunderstood your scenario or if you have any other questions.