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 :
But I want to delete only 1 event (select this event), how to do that?
Thanks
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)
Thanks