From Clomosy Docs
function EncodeDate(Year, Month, Day: Word):TclDateTime;
The EncodeDate function produces a TclDateTime return value from the passed Year, Month, and Day values.
The allowed parameter values are:
Year = 2000..9999
Month = 1..12
Day = 1..31 (depending on month/year)
Example
var
myDate : TclDateTime;
{
// Set my date variable using the EncodeDate function
myDate = EncodeDate(2023, 02, 27);
ShowMessage('Date set to '+DateToStr(myDate));
}
Output:
Date set to 27.02.2023