现在的位置: 首页 > 综合 > 正文

Delphi从UTC (GMT)返回时差

2011年12月15日 ⁄ 综合 ⁄ 共 252字 ⁄ 字号 评论关闭

Delphi/Pascal view sourceprint?1 function TimeZoneBias: Integer; 

 var

   TZI: Windows.TTimeZoneInformation; // info about time zone 

 begin

   if Windows.GetTimeZoneInformation(TZI) = Windows.TIME_ZONE_ID_INVALID then

     SysUtils.RaiseLastOSError; 

   Result := TZI.Bias 

 end;

抱歉!评论已关闭.