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?