Reputation: 763
Is there anyway to remove a reminder/alarm that has been created from my application? And maybe make it possible for the user to list all reminders/alarms that has been created.
Upvotes: 1
Views: 471
Reputation: 936
Did you try this ?
if (ScheduledActionService.Find("Your Alarm Name") != null)
ScheduledActionService.Remove("Your Alarm Name");
Upvotes: 1