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
860
How can I have reminder checked by default for every new appointment.
posted

I would like to ensure that each new appointment has the reminder checked automatically, but I cannot find any way to do it.

Pat

Parents
  • 2094
    Offline posted

    You could use any number of events to capture this such as the CalendarInfo.AfterAppointmentAdded OR the CalendarInfo.AfterCloseAppointmentDialog

     You could force it with a custom dialog GUI or just use the above events and do:
     

    Me.appointment.Reminder.DisplayIntervalUnits = DisplayIntervalUnits.Minutes
    Dim reminderDisplayInterval As TimeSpan = DirectCast(Me.cboReminder.SelectedItem.DataValue, TimeSpan)
    Me.appointment.Reminder.DisplayInterval = reminderDisplayInterval.TotalMinutes
    Me.appointment.Reminder.Enabled = True
     

    Hope this helps

     

    Cheers
    Aaron

     

Reply Children
No Data