i'm using the code
CalendarService myService = new CalendarService("exampleCo-exampleApp-1");

myService.setUserCredentials("my email", " my password");

EventQuery query = new EventQuery();

query.Uri = new 
Uri("http://www.google.com/calendar/feeds/default/private/full";);

query.StartTime = DateTime.Now;

EventFeed myResultsFeed = myService.Query(query);

txtCal.InnerHtml = "Your calendars events :\n";

foreach (Google.GData.Calendar.EventEntry entry in myResultsFeed.Entries)

{

Label1.Text += "<b>Event Title</b> :" + entry.Title.Text + "<br/><b>Event 
Description</b> :";

if (entry.Content.Content.Length < 60)

{

Label1.Text += entry.Content.Content + "<br/><br/>";

}

else

{

Label1.Text += entry.Content.Content.Substring(0, 50) + "......<br/><br/>";

}

}

THIS SHOWS ONLY EVENT TITLE BUT I WANT OT GET THE EVENT DATE . CAN ANY ONE 
TELL ME

----- Original Message ----- 
From: "Charlie Wood" <[email protected]>
To: "Google Calendar Data API" 
<[email protected]>
Sent: Friday, July 17, 2009 8:36 PM
Subject: Re: Could not generate feed



WHAT ARE YOU TALKING ABOUT


On Jul 17, 8:07 am, "Shukla,  Ashutosh" <[email protected]>
wrote:
> CAN WE GET THE EVENT DATE PLEASE HELP ME ITS URGENT
>
>
>
> ----- Original Message -----
> From: "Charlie Wood" <[email protected]>
> To: "Google Calendar Data API"
> <[email protected]>
> Sent: Friday, July 17, 2009 6:29 PM
> Subject: Re: Could not generate feed
>
> It's sporadic--just retry a few minutes later.
>
> -c
>
> On Jul 16, 9:59 pm, AK <[email protected]> wrote:
> > We are still sometimes getting customers who get this error. What is
> > the appropriate way to deal with it? What's weird is that the user
> > will then use another app that uses the same APIs and it works.




--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to