中算出专题

Delphi 11.3中从一个日期时间中算出当月(当年、当季)的第一天与最后一天

函数代码 function DateMonthStart(const DT: TDateTime): TDateTime; var   Day, Month, Year: Word; begin   SysUtils.DecodeDate(DT, Year, Month, Day);   Result := SysUtils.EncodeDate(Year, Month, 1); end; fu