Description |
The DateTimeToStr function converts a TDateTime value DateTime into a formatted date and time string.
The string comprises :
Date in | ShortDateFormat |
1 blank | |
Time in | LongTimeFormat |
See these two formatting variables for more details.
The date and time formats are also affected by the DateSeparator and TimeSeparator values.
Version 2 of this function is for use within threads. You furnish the FormatSettings record before invoking the call. It takes a local copy of global formatting variables that make the routine thread safe.
|
|
Notes |
If the time is Midnight (00:00), then it is not stored in the string. Quite why is another matter.
|
|
Related commands |
|
|
|
Example code : Converting two date/time values to strings |
// Full Unit code. // ----------------------------------------------------------- // You must store this code in a unit called Unit1 with a form // called Form1 that has an OnCreate event called FormCreate. unit Unit1; interface uses SysUtils, // Unit containing the DateTimeToStr command Forms, Dialogs; type TForm1 = class(TForm) procedure FormCreate(Sender: TObject); end; var Form1: TForm1; implementation {$R *.dfm} // Include form definitions procedure TForm1.FormCreate(Sender: TObject); var
myDate : TDateTime;
begin
myDate := StrToDateTime('09/02/2002 12:00');
ShowMessage('Middle of a day = '+DateTimeToStr(myDate));
myDate := StrToDateTime('09/02/2002 00:00');
ShowMessage('Start of a day = '+DateTimeToStr(myDate));
end; end.
|
Hide full unit code |
Middle of a day = 09/02/2002 12:00:00
Start of a day = 09/02/2002
|
|