UltraCalendarInfo CheckAppointmentReminders() not showing reminder dialog when UltarWinSchedule control not yet instantiated.
Is CheckAppointmentReminders() must have an open UltarWinSchedule control ?
Please advice.
Thanks.
Hello tomert,
I believe that this dialog will show no matter if a control is instantiated or not. So could you please review the sample attached to this post and see if it meets your requirements.
Please feel free to let me know if I misunderstood you or if you have any other questions.
Hi Boris,
I have one doubt on your Sample, when you click on Ultra Button, you have called CheckAppointmentReminder(). i think it should pop up the reminder Message window right. but its not working. I have a Situation on which on clicking a button i need to show the reminder Message. How it can achieved.
Thanks
Hello neusanjeev,
When you open my sample you could move this line of code:
reminder.Enabled = true;
to the button's click event. Then run the sample and click the button.
If you want, you could attach a sample project with your scenario with your exact requirements for me, I will give my best to make it work for you.
thanks for Quick Response, yes, i have moved the Code into Button and it works fine. but in my scenario. My appointment is in Dataset.
In your Sample you have used
ultraCalendarInfo1.Appointments.Add(DateTime.Parse("11/11/2010"), "ssss");
and also used
ultraCalendarInfo1.Appointments[0].Reminder = reminder;
, i Have already BIND my Dataset to UltraCalendarInfo1. now what to write on these above 2 lines of Sample Code.