From Clomosy Docs

Revision as of 15:05, 24 December 2024 by ClomosyAdmin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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