Tagged Questions
13
votes
1answer
179 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
126 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
3answers
528 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
305 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
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
172 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
184 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
382 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 ...