Comment tirer la date du système à Delphi

var.
currentDate: TDateTime;
begin.
currentDate := Now;
ShowMessage(DateToStr(currentDate)); //Show the current date.
ShowMessage(TimeToStr(currentDate)); //Show the current time.
end;
Important Ibis