Tagged Questions

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 ...
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
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. ...