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
1855
ultrawinschedule reminders
posted

what is the connection between .isremoved and whether or not a reminder is dismissed

the following code appears to mark any reminder that is dissmissed as isremoved.

var newAppt = new Appointment(appt.TIMESTAMP, appt.TIMESTAMP);

// IMPORTANT, do this first as it clears the Appt.Tag parameter
if (appt.REMINDER_TIME != null)
{
newAppt = Appointment.FromBytes(appt.REMINDER_TIME);
}

is that right once a reminder is dismissed the appointment should no longer show in thecalander view?