The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
55 views

How to make a casting for C++ Builder headers

I have a project written in C++ Builder XE. I use JVCL Components for this project. Someday, I need to use IncMonth() for adding the increment of TDateTime months but it raising any error message like ...
2
votes
1answer
85 views

How do I check if a Variant is a TDateTime?

I have an object, that has one value, but that value can either be an integer, string, boolean or TDateTime. So, it is a Variant. I use VarType() to check its type, but since VarType() has no ...
1
vote
1answer
35 views

Whats wrong with TDateTime value

I have a TDateTime variable called currMonth. currMonth's value is "6/30/2000 11:59:59 PM". I need to insert currMonth as default value for a field at TDBGrid called dtBegin. I try this code : ...
1
vote
1answer
28 views

How to replace Day of TDateTime type on runtime

I have TDateTime variable named dtBegin. dtBegin is containing value "7/3/2000". I need to replace the Day only with "2" to change the value into "2/3/2000". How to do this? I've been suggested to ...
5
votes
2answers
1k views

Conversion with StrToDateTime and TFormatSettings does not work

This code should work in Delphi XE2, but it gives "not a valid date and time" error in StrtoDateTime conversion: procedure TForm2.Button1Click(Sender: TObject); var s: string; d: TDateTime; ...
2
votes
1answer
73 views

MonthOf TDateTime ambiguity

I am using C++ Builder and am creating a GUI application using the TDateTime data type. When I use the MonthOf() method on a TDateTime object, I am getting a value that is 1 month behind from the ...
1
vote
2answers
165 views

Comparing two TDateTime variables

I am using C++ Builder and am wanting some help to see if two times are the same. Here is my code: TDateTime appDateFromVector = TimeOf(appointmentsForFind[i].getAppDateTime()); DateTime ...
0
votes
1answer
58 views

Combining two TDateTime variables

I am using C++ Builder in a VCL forms application. I am wanting to create one TDateTime variable that is made up of two TDateTimePicker controls. One of the controls is in the Date format and the ...
0
votes
1answer
75 views

Extract date from date and time

I am using a VCL forms application in C++ Builder. How can I get just the date from a TDateTime object that has both a date and a time associated with it? Here is an example: TDateTime ...
0
votes
0answers
30 views

TMonthCalendar showing dates

I am developing a Calendar Application using VCL Forms in C++ Builder. I have many appointments, each with a TTimeDate type associated with it. I see that there is a TMonthCalendar object and that ...
-1
votes
2answers
129 views

TDateTime data type

I have been using C++ Builder to develop some classes. I have been using the TDateTime data type by including the 'vcl.h'. Is this only unique to C++ Builder? I ask this because I am now using ...
1
vote
0answers
187 views

Converting a string to a TDateTime variable

I am using C++ to develop an appointment system. Can I please have some help in converting a string to a TDateTime variable. Here is an example that I would like some help with; TDateTime ...
-1
votes
1answer
430 views

C++ calculate difference between dates [duplicate]

Possible Duplicate: Checking two TDateTime variables I am having trouble calculating the difference between two dates and then displaying the difference. I have posted a previous question, ...
1
vote
2answers
338 views

Checking two TDateTime variables

I am using C++ Builder and have the following question: I am wanting to detect if a date/time is later than another date/time, and by how much. Here is my current code: TDateTime ...
0
votes
1answer
528 views

Delphi - Why is TDate and TDateTime the same?

when looking in System.pas there TDate und TDateTime defined as the following: TDateTime = type Double; TDate = type TDateTime; TTime = type TDateTime; obviously TDate and TDateTime are the ...
2
votes
1answer
193 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 ...
17
votes
2answers
566 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 ...
0
votes
1answer
419 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!!!
1
vote
2answers
1k 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 ...
2
votes
1answer
164 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
0
votes
3answers
330 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 ...
2
votes
3answers
937 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
435 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, ...
0
votes
4answers
599 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 ...
2
votes
3answers
6k 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
1k 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. ...
18
votes
9answers
3k 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 ...