3 messages in com.googlegroups.google-calendar-help-dataapiRe: Deleting events .NET
FromSent OnAttachments
Dexterr24 Sep 2006 14:17 
Frank Mantek25 Sep 2006 01:12 
Dexterr25 Sep 2006 07:35 
Subject:Re: Deleting events .NET
From:Frank Mantek (fman@gmail.com)
Date:09/25/2006 01:12:54 AM
List:com.googlegroups.google-calendar-help-dataapi

From the top of my head... Events in the calendar do not get deleted when you delete them, they get their status changed to "cancelled". Hence, you will still see them in the feed, but you need to check out the eventstatus.

There is a delay between feed actions and UI propagation, although it should not be 10min. That kind of suprised me.

On 9/24/06, Dexterr <dext@yahoo.es> wrote:

I'm trying to delete single events, but I'm having problems. This is what I do:

1) I send a FeedQuery.Query to Google 2) Retrieve the events Dim myResultsFeed As AtomFeed = myService.Query(myQuery) 3) Take first event (for example) Dim firstMatchEntry As AtomEntry = myResultsFeed.Entries(0) 4) Delete it firstMatchEntry.Delete()

It is done with no problems. But when I go to my calendar, I can still see it on there. Why it is not deleted?

After ten minutes, it seems to be deleted from my calendar. But when I execute my code again, the firstMatchEntry is again that event!!! So when I try to delete it, of course, I get an error.

How can I delete events forever? Is there a solution to clean a calendar, I mean, delete all events in a calendar?

Thanks.