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 expiresome appointment the event BeforeDisplayReminderDialog is not show
what am I being wrong?
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.