My code as follows

EventEntry eventEntry=new EventEntry();
AtomEntry inSert=new AtomEntry();
_UName = GR.GetRegistryEntyVal(GlookEntry.GmailID);
_PWD =
GCrypt.GetDecryptedValue(GR.GetRegistryEntyVal(GlookEntry.Password));
CalendarService _service1=new
CalendarService("exampleCo-exampleApp-1");
// Set your credentials:
_nc = new NetworkCredential(_UName, _PWD);
_service1.Credentials = _nc;

// Create the query object:
_URI = new Uri("http://www.google.com/calendar/feeds/"; + _UName +
"/private/full");
//query.Uri =_URI;
AtomPerson Atmprs=new AtomPerson(AtomPersonType.Author,"Prasanth");

eventEntry.Title.Text="Tulasi";
eventEntry.Content.Content="This is Tulasi";
When wh=new When();
wh.StartTime=DateTime.Now;
wh.EndTime=DateTime.Now;
eventEntry.addTime(wh);
eventEntry.Authors.Add(Atmprs);
Where where=new Where();
where.ValueString="Secandrabad";
eventEntry.Locations.Add(where);
inSert=_service1.Insert(_URI,eventEntry);
it is not giving any errors.
It is inserting only title and Content but Location are not inserting
in to the Google calendar.Can u tell me what i had done the mistake
please tell me.This very urgent


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

Reply via email to