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
166 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
431 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
339 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 ...
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
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. ...