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 cu
You can use your normal -, +, <, >,== and = with TDateTime.
-
+
<
>
==
=
TDateTime
So to see if one date is ahead of another, you can, for example, subtract them and see if the result is greater or lesser than zero.