首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
中算出专题
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
阅读更多...