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
100
BeforeDisplayReminderDialog it doesn't work
posted

 hi,

 I have loaded a database CalendarInfo in this way

With Me.uciProm
    .DataBindingsForAppointments.SetDataBinding(Me.bsScadenziario, String.Empty)
    .DataBindingsForAppointments.BindingContextControl = Me
    .DataBindingsForAppointments.SubjectMember = "Titolo_Scadenza"
    .DataBindingsForAppointments.StartDateTimeMember = "Data_Scadenza"
    .DataBindingsForAppointments.EndDateTimeMember = "DataFine"
    .DataBindingsForAppointments.DataKeyMember = "ID_Scadenza"
    .DataBindingsForAppointments.ReminderEnabledMember = "Reminder"
    .DataBindingsForAppointments.ReminderIntervalMember = "ReminderInterval"
    .DataBindingsForAppointments.ReminderUnitsMember = "ReminderUnits"
End With

In the dayView the icon of the Reminder is visualized but to expire
some appointment the event BeforeDisplayReminderDialog is not show

what am I being wrong? 

 

Parents
No Data
Reply
  • 69832
    Offline posted

    I am speculating a bit here, but it is possible that the reminder for which you are expecting a dialog to appear is past due at the time the application loads; in these cases, you need to call the UltraCalendarInfo.CheckAppointmentReminders method.

Children
No Data