iOS Question Problem To Delete Recurring Events

mayahandayani

Member
Licensed User
Hello!
I create calendar using EventStore and I have recurring events. I want to delete and show option like this :
1722831761805.png

(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
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
I see some discussions about it not being possible to delete a single instance of a recurring event if the recurring event was created by the user:
 
Upvote 0
Top