Topic
Set timezone to UTC
Home page › Community › Automation and VBA › Set timezone to UTC
- This topic has 2 replies and 2 voices and was last updated 20 years, 3 months ago ago by n.flamisch@ibflamisch.at.
-
AuthorPosts
-
15.02.2005 at 19:27 #35038n.flamisch@ibflamisch.atParticipant
To avoid problems with daylight saving time and different timezones, I want to set the timezone to UTC when I start FlexPro. Is there a VBA script that can manage this ?
16.02.2005 at 01:42 #35036n.flamisch@ibflamisch.atParticipantTo avoid problems with daylight saving time and different timezones, I want to set the timezone to UTC when I start FlexPro. Is there a VBA script that can manage this ?
16.02.2005 at 01:42 #35037Bernhard KantzParticipantFlexPro saves calendar times as numerical values which contain the number of seconds since the 1. 1. 1970 in “Universal Time Coordinated” (UTC). Using a calendar time formatter, you can display these numerical values as a calendar time. FlexPro thereby converts the UTC values automatically into the time zone set in the Control Panel. Using an option, however, you can specify that the output is to be in coordinated world time. The formatter specifies which elements of an UTC time value should be displayed.
If you change the global time zone (set in the Control Panel) FlexPro must be restarted!
VBA doesn’t give you any built-in functions for determining either GMT or your offset from it, or what time zone your are located in. Therefore, you’ll have to use the Windows API (or Application Programmatic Interface) calls, to get this information directly from Windows.
See also Microsoft Article “How to change time zone information by using Visual Basic” (Article ID 221542). http://support.microsoft.com/kb/221542/en-us
-
AuthorPosts
- You must be logged in to reply to this topic.