TIME_ZONE_INFORMATION Type

Type TIME_ZONE_INFORMATION
  Bias As Long
  StandardName(32) As Integer
  StandardDate As SYSTEMTIME
  StandardBias As Long
  DaylightName(32) As Integer
  DaylightDate As SYSTEMTIME
  DaylightBias As Long
End Type

TIME_ZONE_INFORMATION-type variables hold information about the system's selected time zone. The two arrays in the structure are actually strings, each element holding the ASCII codes for each character (the end of the string is marked by a NULL character, ASCII code 0). For more information about how to convert the arrays into usable data, see the example for GetTimeZoneInformation.

Bias
The difference in minutes between UTC (a.k.a. GMT) time and local time. It satisfies the formula UTC time = local time + Bias.
StandardName(32)
Holds the name of the time zone for standard time.
StandardDate
The relative date for when daylight savings time ends.
StandardBias
A number to add to Bias to form the true bias during standard time.
DaylightTime(32)
Holds the name of the time zone for daylight savings time.
DaylightDate
The relative date for when daylight savings time begins.
DaylightBias
A number to add to Bias to form the true bias during daylight savings time.

Used by: GetTimeZoneInformaton
Back to the index.


Back to Paul Kuliniewicz's Home Page
E-mail: Borg953@aol.com
This page is at http://members.aol.com/Borg953/api/types/time_zone_information.html