Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Win32/Win64 API (native code) (https://www.delphipraxis.net/17-win32-win64-api-native-code/)
-   -   Delphi Zeitzone (https://www.delphipraxis.net/22609-zeitzone.html)

phXql 19. Mai 2004 23:12


Zeitzone
 
Moin leute,

ich hab ein kleines problem. ich bastlte grade an einem ICQ client rum. bei den offline-messages bekomm ich ein datum als TDateTime, das vom ICQ-Server kommt. der steht aber leider irgendwo in amerika, und daher in einer anderen Zeitzone. wie kann ich die aktuelle zeitzoneneinstellung auslesen (z.b. GMT+1:00)? aus der variable SysLocale werd ich nich schlau... Danke schonmal für antworten :)

phXql

toms 20. Mai 2004 05:30

Re: Zeitzone
 
Stichwort: Bei Google suchenGetTimeZoneInformation Delphi

Artikel im "The Delphi Magazine": http://www.thedelphimagazine.com/samples/1175/1175.htm

Meflin 20. Mai 2004 09:21

Re: Zeitzone
 
vielleicht hilft dir das weiter:
Delphi-Quellcode:
function GetTimeZone: String;
var T: TIME_ZONE_INFORMATION;
begin
  case GetTimeZoneInformation(T) of
    TIME_ZONE_ID_UNKNOWN: Result := 'unbekannt';
    TIME_ZONE_ID_STANDARD: Result := T.StandardName;
    TIME_ZONE_ID_DAYLIGHT: Result := T.DayLightName;
  end;
end;


Alle Zeitangaben in WEZ +1. Es ist jetzt 10:43 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz