The DateTime field does not return the timepart, the change required is:
procedure TLLDataField.setAsDateTime(const Value: TDateTime); begin setAsString(SysUtils.DateTimeToStr(Value)); end;
Log in to post a comment.