Delphi 获取时间的年月日
Posted huanfuChen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Delphi 获取时间的年月日相关的知识,希望对你有一定的参考价值。
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;
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 获取时间的年月日的主要内容,如果未能解决你的问题,请参考以下文章