I was trying to test out the C# src code sample provided for the Calendar API. I converted the .net solution to 2.0 and set the Calendar Project as startup. I start the app, i put in the following url:
http://www.google.com/calendar/feeds/gavin%40mcsdsoftware.com/public/basic I click the Go button and step into the code that runs. After running the query, I get back 5 entry items, I added 2 test items and they do show up, so I verify the quantity increases as I add more Calendar items. in the code section: while (calFeed != null && calFeed.Entries.Count > 0) { // look for the one with dinner time... foreach (EventEntry entry in calFeed.Entries) { Each of my EventEntry Objects are comletely null, all properties return null and the locations, participants, and times collections are all empty. Aren't these object suppoed to be statefull? My ArrayList dates ends up empty and so nothing is set to bold on the calendar, and I have no entries in my list. What am I doing wrong? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
