Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
1answer
163 views

How can I distinguish TDateTime properties from Double properties with RTTI?

Using the RTTI system in Delphi 2010, is there any way to find out if a property is a TDateTime? It's currently treating it as a double whenever I call back asVariant and also if I check the property ...
11
votes
8answers
2k views

Declare a TDateTime as a Const in Delphi

As far as I know there is no way to do this, but I am going to ask just in case someone else knows how to do this. How can I declare a date as a const in Delphi? The only solution I have found is ...
2
votes
1answer
123 views

Delphi TDateTime variable will not initialize in Delphi 2010

I have created a simple form in Delphi 2010 with a single button in the code for the button I put: procedure TForm1.Button1Click(Sender: TObject); var myDateTime:TDateTime; begin ...
2
votes
1answer
97 views

C++ variable type alike Builder TDateTime type

I'm looking for variable type (in standard C++ libraries) that could easily substitute TDateTime. What I need is hour, minutes, seconds and miliseconds. Thanks for the attention
2
votes
3answers
497 views

Encode Time Issue in Delphi 2010

When we use EncodeTime function EncodeTime(wHour, wMinute, wSecond, wMilliseconds) it is not assigning the millisec value to the Result. We are using below to encode Date and Time Result := ...
2
votes
2answers
296 views

Function Now: Tdatetime for Perpetual Calendar

I am trying to write a function for Tdatetime (but when I open my program, he must show now data) Below i have a function for TDatetime but I have an error in that: ((((''DecodeDateTime(data, ...
1
vote
2answers
215 views

Calculating time length between operations in c++

The program is a middleware between a database and application. For each database access I most calculate the time length in milliseconds. The example bellow is using TDateTime from Builder library. I ...
1
vote
3answers
4k views

Convert UTC string to TDatetime in Delphi

eg. var tm : string; dt : tdatetime; tm := '2009-08-21T09:11:21Z'; dt := ? I know I can parse it manually but I wonder if there is built-in function or win32 api function to do this ? Any help ...
0
votes
1answer
151 views

Delphi: convert TDate to other format

var MyDate:TDate; MyDate:=Date; How can I convert local myDate to my format: 31/12/2011? RecodeDate? Thanks!!!
0
votes
3answers
173 views

TDateTime To ShortDateString In Satellite Forms “VB-clone”

I am trying to find a calculation that will convert the TDateTime value 40653.6830593 into a year, a month, a day, an hour, a minute and a second. I am sure this is possible, of course, but my brain ...
0
votes
4answers
372 views

Frac function losing precision

I have a TDateTime variable which is assigned a value at runtime of 40510.416667. When I extract the time to a TTime type variable using the Frac function, it sets it to 0.41666666666. Why has it ...
0
votes
1answer
855 views

Calculate time between 2 TDateTime, with a twist

I need to find out how to get the time between 2 times, but only if it is within work hours(Stored in a database) This is what I got for now, but it is totally wrong. the total won't bee correct. ...