Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
229
how i can get the return value of the particular appointment's snooze time from the reminder dialog?
posted

Hi All,

 I am using AppointmentDataBinding for load the appointment data from the database at the time of form loading, The code for your understanding,

 _AppDataBind = uCalendarInfo.DataBindingsForAppointments;

_AppDataBind.SubjectMember = "Description";

_AppDataBind.StartDateTimeMember = "StartTime";

_AppDataBind.EndDateTimeMember = "EndTime";

_AppDataBind.DataSource = DatatableTest;

uCalendarInfo.DataBindingsForAppointments.SetDataBinding(_AppDataBind.DataSource,string.Empty);

uCalendarInfo.DataBindingsForAppointments.BindingContextControl =this;


At this point of approach the reminders are automatically pop up when i m load the form. So that time, if i am clicking the snooze button, where as well as how i can get the return value of the particular appointment's snooze time?

 Same as how can i get the values of Dismiss button and Dismiss All button?