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

Delphi 获取时间的年月日

时间:2016-12-13 16:06:52      阅读:445      评论:0      收藏:0      [点我收藏+]

标签:min   font   .text   mac   datetime   class   timetostr   1.5   mon   

procedure TFrmLltj.FormActivate(Sender: TObject);

var
   Present: TDateTime;
   Year, Month, Day, Hour, Min, Sec, MSec:Word;
begin
   Present:= Now;
   DecodeDate(Present, Year, Month, Day);
   DecodeTime(Present, Hour, Min, Sec, MSec);
   Showmessage(DateToStr(Present)+‘ ‘+TimeToStr(Present,‘hh‘));//显示年月日时分秒
   Showmessage(formatdatetime(‘hh:mm‘,time));//显示时分
   cbb_qs_n.Text := inttostr(Year);//显示年
   cbb_qs_y.Text := inttostr(Month);//显示月
   cbb_qs_r.Text := inttostr(Day);//显示日
   cbb_qs_s.Text := IntToStr(Hour);//显示时
   cbb_qs_f.Text := IntToStr(Min);//显示分


end;

Delphi 获取时间的年月日

标签:min   font   .text   mac   datetime   class   timetostr   1.5   mon   

原文地址:http://www.cnblogs.com/sunday-night/p/6170014.html

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