Q&A

  • GMT 구하는 겁니다
function GetTimeZone: String;

var

TimeZone: TTimeZoneInformation;

begin

GetTimeZoneInformation(TimeZone);

Result:='GMT '+IntToStr(TimeZone.Bias div -60);

end;

0  COMMENTS