Hi All,
i have a reminder dialog as shown below........
In this dialog if i am click "Snooze" button, i have to update the snooze value in my database. But i m not getting any method or property for get the value from this reminder dialog for the particular appointment as well.
Same functionality needed for "Dismiss" and "Dismiss All".
Also i have to know what event has triggered when i click the "Open Item" button.
Please any one help and solve my issue.......
Thank you,
Govind
Appointment.Reminder.SnoozeTime returns the date/time the appointment was snoozed.Appointment.Reminder.Enabled is set to false when the Dismiss button is pressed; DismissAll sets Enabled to false for all the appointments in the list.UltraCalendarInfo.BeforeDisplayAppointmentDialog fires when the Open Item button is pressed.
Thank you for your answer brain...........
Actually 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 popup 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?