Regardless of what the user's local time zone is set to, using Delphi 2007, I need to determine the time (TDateTime) in the Eastern time zone.
How can I do that? Of course, needs to be daylight savings time aware.
|
1
|
|
|
|
|
|
TDateTime does not have any time zone information (it is just a double - date as whole number, time as decimal), so you would need that separately. You would need your own logic for DST as well, I don't believe there is any in Delphi. Then use the IncHour function in DateUtils.pas to alter the TDateTime to the Eastern Timezone. There are probably web services that will do this for you. Does your application need to be self contained, or can it connect to the web to do it? |
|||
|
|
|
|
If I understand you correctly, you want the Eastern Time equivalent of the current system time. To do this, use the WiNAPI function You can then use the WinAPI function The following sample will always gives you the local time in Eastern Time as per Energy Policy Act of 2005.
|
||
|
|
|
|
To be specific, TDateTime isn't object, it's just an alias for double. |
||
|
|