TIME_ZONE_INFORMATION Structure

Type TIME_ZONE_INFORMATION
  Bias As Long
  StandardName(0 To 31) As Integer
  StandardDate As SYSTEMTIME
  StandardBias As Long
  DaylightName(0 To 31) 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(0 To 31)
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(0 To 31)
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

Go back to the alphabetical Structure listing.
Go back to the Reference section index.


This page is copyright © 2000 Paul Kuliniewicz. Copyright Information.
Go back to the Windows API Guide home page.
E-mail: vbapi@vbapi.com Send Encrypted E-Mail
This page is at http://www.vbapi.com/ref/t/time_zone_information.html