Hello!
I create calendar using EventStore and I have recurring events. I want to delete and show option like this :
(Note : In my app only 2 options, this event & all events.)
When I select All Events, I can delete using this code :
B4X:
Dim aas As ASScheduler_Appointment = data
Dim ev As CalendarEvent = MP.store.GetEvent(aas.Tag)
MP.store.RemoveEvent(ev,True)
But I want to delete only 1 event (select this event), how to do that?
Thanks
I've developed an app that uses calendar using the eventkit. The user can push a button and delete a specific event. Everything works just fine, except when it comes to recurrent events. If the u...