Hi, I wanted to retrieve all events on a given date, it works fine if there is a non-recurring event. However, if there is any recurring event, it's not pulling that.
I have gone through the discussions, but not been able to find what am doing wrong. If some one can refer me to an already post or can provide me with some sample code, that will be great. Am using .net library and here is my sample code, CalendarService service = new CalendarService(calendarName); service.setUserCredentials(gUserId, gPassword); EventQuery queryEvent = new EventQuery(gcalendarId); queryEvent.StartTime = stDateIime; queryEvent.EndTime = endDateIime; queryEvent.SingleEvents = true; EventFeed calFeed = service.Query(queryEvent); Adnan --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
