Thema: Delphi Gebietsschema & Zeitzone

Einzelnen Beitrag anzeigen

Tpercon

Registriert seit: 7. Jun 2002
638 Beiträge
 
Delphi 5 Professional
 
#5
  Alt 18. Jun 2003, 17:02
Ja!

Die Zeitzone lese ich jetzt so aus:
Delphi-Quellcode:
function TForm1.GetTimeZone:string;
var TZI : TTimeZoneInformation;
begin
 case GetTimeZoneInformation(TZI) of
  TIME_ZONE_ID_UNKNOWN: result:= 'Unbekannt';
  TIME_ZONE_ID_DAYLIGHT: result:= TZI.DaylightName;
  TIME_ZONE_ID_STANDARD: result:= TZI.StandardName;
 else result:= 'Unbekannt';
 end;
end;
Hat jemand eine Idee für das Gebietsschema?
  Mit Zitat antworten Zitat