From Clomosy Docs

Revision as of 10:57, 24 December 2024 by ClomosyAdmin (talk | contribs)

Converts a TclDateTime value into a string.
Use DateToStr to obtain a string representation of a date value that can be used for display purposes.

Example

var
  myDate : TclDateTime;
{
  myDate = StrToDate('27.02.2023');
  ShowMessage('myDate = '+DateToStr(myDate));
}

Output:

See Also