I have 4 appointments. I need to remind these appointments in the single reminder dialog window as shown below.
If i am using the in-build reminder dialog of infragistics its shows all appointments in a single reminder window as shown above figure.
But I restrict this window in CalendarInfo_BeforeDisplayReminderDialog event and show my own customized form dialog instead of the in-build reminder dialog.
My Problem is, if I am using my own customized form dialog its shows the reminder dialog for each and every appointment.ie., it shows 4 reminder dialogs. But I need all appointments consolidated in a single form.
My question is,
How I can display the all appointments in a single reminder dialog(My Own customized reminder dialog)?
Note: In the customized reminder dialog I have a ultralistview control for list the reminded appointments.
Regards,
Govind
Normal 0 false false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4
What we do is, if the dialog is already open when the event fires for a given appointment, that appointment is added to the list. Another way to handle this is to add the appointments to a queue when the event fires, and then check that queue on a timer, and display whatever appointments are in it in the dialog.
Hi Brain,
Thanks for the answer. I thing the following way is suit for me. "Another way to handle this is to add the appointments to a queue when the event fires, and then check that queue on a timer, and display whatever appointments are in it in the dialog."
In "BeforeDiplayReminderDialog" event i restrict the existing reminder dialog, then each and every reminded appointment i added in the collection or queue. But i m not understand that the "check that queue on a timer, and display whatever appointments are in it in the dialog."
please clarify me as well as please give me an example if u can?
Thanks,