Hi Austin, I've got it working. I was testing the resulting query for "TotalResults" instead of "EventFeed.Entries.Count "
Many thanks for your help. Pete On 6 Mar, 10:14, infopete <[EMAIL PROTECTED]> wrote: > Hi Austin, > > I tried that with a new calendar with just one entry. > > I get the uri > ofhttp://www.google.com/calendar/feeds/default/private/full/cklcqroclle... > > and then pass this into your code but I get nothing back. > > Any ideas? > > Pete > > On 5 Mar, 18:30, "Austin (Google)" <[EMAIL PROTECTED]> wrote: > > > > > Hi, > > > This is how you retrieve a single entry with its ID - > > > public void retrieveSingleEvent(entryURI) { > > > EventQuery query = new EventQuery(); > > query.Uri = new Uri(entryURI); > > > EventFeed feed = calendarService.Query(query); > > if (feed.Entries.Count > 0) > > { > > Console.WriteLine(feed.Entries[0].Title.Text); > > } > > } > > > Hope it helps, > > Austin > > > On Wed, Mar 5, 2008 at 2:56 AM, infopete <[EMAIL PROTECTED]> wrote: > > > > Hi, > > > > I've populated a calendar with events from my Lotus Notes calendar. I > > > keep a record of entry.Id.AbsoluteUri so that I can get the entry back > > > to delete or amend it. > > > > How do I get a single entry using dot net from the AbsoluteURi or is > > > there a better way? > > > > Pete- Hide quoted text - > > > - Show quoted text -- Hide quoted text - > > - Show quoted text - --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
