码迷,mamicode.com
首页 > Windows程序 > 详细

delphi 判断给定日期的天数,给定日期距离月初的天数,给定日期距离月末的天数

时间:2017-04-15 19:11:14      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:label   oda   nbsp   距离   bsp   apt   phi   utils   trim   

uses

dateutils;

//判断给定日期的天数

label1.caption := inttostr(DaysInAMonth(yearof(StrToDate(Trim(Edit_riqi.Text))),monthof(StrToDate(Trim(Edit_riqi.Text))) ));

//给定日期距离月初的天数

label2.caption := inttostr(dayof(StrToDate(Trim(Edit_riqi.Text)) )-1);

//给定日期距离月末的天数

label3.caption := IntToStr(StrToInt(label1.caption)-StrToInt(label2.caption));

 

    

 

delphi 判断给定日期的天数,给定日期距离月初的天数,给定日期距离月末的天数

标签:label   oda   nbsp   距离   bsp   apt   phi   utils   trim   

原文地址:http://www.cnblogs.com/lantianhf/p/6715131.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!