Let's move this to the correct discussion group, as this was google-
base, but you are inquiring about google-calendar.
Is this:
happening for every tz change on your PDA?
are you updating the ctz parameter when you do that?
can you reproduce the same on the desktop?
I doubt it is a problem in the client DLLs, but i have no problem
imagining that we return interesting results for some timezones... ?
Regards
On Sep 21, 2007, at 8:18 AM, Jozy wrote:
Hi
I am working in Windows Mobile 6.0 environment, and i am getting
calendar feed from google calendar as follows.
AtomEntryCollection gcalEvents = null;
EventQuery query = new EventQuery(calendarURI);
CalendarService service = new CalendarService("ApplicationName");
service.setUserCredentials(userName, password);
query.ExtraParameters = string.Format("ctz={0}", "Asia/Calcutta");
EventFeed calFeed = service.Query(query);
gcalEvents = calFeed.Entries;
It works fine and retrieves event times according to ctz paramter.
The problem occurs when timezone of my PDA is changed. The event times
retrieved are irregular (Neither according to timezone as per new ctz
value, nor to old ctz value ).
Please help , as if i believe there is some problem in Google's dll.