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 test("25/09/2012 12:00am");
I am after a TDateTime object that has just the following information:
"25/09/2012"
Thanks