Hello,

I tried the following code, in order to retrieve a complete list of my
Calendar entries:

// Create the query object:
EventQuery evQuery = new EventQuery();
evQuery.Uri = new Uri("https://www.google.com/calendar/feeds/
[email protected]/private/full");

evQuery.StartTime = new DateTime(1905, 1, 5);
evQuery.EndTime = new DateTime(2012, 1, 7);

// Tell the service to query:
EventFeed calFeed = myService.Query(evQuery);

foreach (EventEntry entry in calFeed.Entries)
{
    tBoxKalEintraege.Text = tBoxKalEintraege.Text + "\r\n-->" +
entry.Title.Text.ToString();
}

Problem 1: I only get the last enterred 25 entries. But I assume, I
have 250 entries.
Problem 2: I have several calendars, how do I get the others?

Regards & thanks a lot,

AA

-- 
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://code.google.com/apis/calendar/community/forum.html

Reply via email to