Hi,
Am just starting with win-schedule. Want to show reminders in a custom form instead of included reminder dialog? The problem is that I don't see any dismiss method for reminders. There are all sort of methods like snooze so why not a dismiss method as well? Am I missing something here? I searched on forums and couldn't find any related post so posting this new post.
If anybody has any ideas, please respond. Thanks in advance.
Thanks you Aaron and Brain for your prompt response. Much appriciated :-)
Setting the Reminder.Enabled property is the logical equivalent of dismissing the reminder.
Intercept the CalendarInfo.BeforeDisplayReminderDialog Event ... my example below cancels the display of the reminder... but you would simply access the properties of this event to populate your custom dialog.
Private Sub CalInfo_BeforeDisplayReminderDialog(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinSchedule.CancelableAppointmentEventArgs) Handles CalInfo.BeforeDisplayReminderDialog e.Cancel = True End Sub
Use e.Appointment to access properties of the appointment that the reminder is being raised for.
RegardsAaron