Im using the .NET functionality and am querying a private calendar
setup in my google calendar, if I add an events this is correctly
returned in a query using a from and to date sepcified.
The problem is if I then delete this event it's still showing, I
though this may be some form of caching issue or something so have
cleared out all possibly caches and left for a number of days but the
problem is still occuring and can easily be re-created.
I'm unsure if im doing something wrong in my code or if there is some
way I can filter out deleted information, my code is:
locEventQuery = New EventQuery()
'work out which calendar to use
Select Case inEvent_Type
Case enum_Event_Type.ePrice
locEventQuery.Uri = New Uri("http://www.google.com/
calendar/feeds/" & locPrice_Calendar_ID & "/private/full")
Case enum_Event_Type.eSchool_Holidays
locEventQuery.Uri = New Uri("http://www.google.com/
calendar/feeds/" & locSchool_Holidays_Calendar_ID & "/private/full")
Case Else
locEventQuery.Uri = New Uri("http://www.google.com/
calendar/feeds/" & locAvailability_Calendar_ID & "/private/full")
End Select
'filter the results
locEventQuery.StartDate = inStart_Date
locEventQuery.EndDate = inEnd_Date
'execute the query and work through the events
locEventFeed = prvCalendarService.Query(locEventQuery)
For Each locEventEntry In locEventFeed.Entries
Kind Regards
Andrew Scotford
--
You received this message because you are subscribed to the Google Groups
"Google Calendar Data API" group.
To post to this group, send email to
[email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-calendar-help-dataapi?hl=en.