QQ登录

只需一步,快速开始

上位机MFC如何获得当前时间

[ 复制链接 ]
关键代码为
  1. CTime time = CTime::GetCurrentTime();//获得当前时间
复制代码

  1. void CDemoDlg::OnTest()
  2. {
  3.         CTime time;

  4.         //获得当前时间
  5.         time = CTime::GetCurrentTime();

  6.         CString strText = _T("");
  7.         strText.Format(_T("%d-%d-%d\n%d:%d:%d"),
  8.                 time.GetYear(), time.GetMonth(), time.GetDay(),
  9.                 time.GetHour(), time.GetMinute(), time.GetSecond());
  10.         AfxMessageBox(strText);
  11. }
复制代码
可以在自己工程用按钮控件调用 上面代码,弹出对话框查看时间

回复

使用道具 举报

快速回复 返回列表 客服中心 搜索