首页 > 代码库 > Delphi 获取时间的年月日
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 获取时间的年月日
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。