Hi everybody, Does anyone know of a free component that converts the local time to UTC and back to another time zone local time? My searches led me to the microsoft "mscorlib.dll" that exposes the TimeZoneInfo class which contains a certain number of properties and methods that can do do all that:
"Local" instantiates a TimeZoneInfo object that represents the local time zone. "Utc" instantiates a TimeZoneInfo object that represents the UTC zone. "ConvertTime(DateTime, TimeZoneInfo, TimeZoneInfo)" converts a time from a time zone to time in another timezone. for an extensive list of the members exposed in the TimeZoneInfo class see: http://msdn.microsoft.com/en-us/library/system.timezoneinfo.aspx Unfortunately, I don't seem to be able to exploit those valuable resources, and I am looking for an alternate way to convert time from time zone to other time zones. Any tips or help would greatly appreciated. TIA. Emmanuel