工控编程吧

标题: 上位机MFC如何获取系统当前时间? [打印本页]

作者: qq263946146    时间: 2019-10-20 12:43
标题: 上位机MFC如何获取系统当前时间?
  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. }
复制代码
上面的代码可以添加一个按钮元件来调用。
主要是通过CTime的成员函数来实现。






欢迎光临 工控编程吧 (https://www.gkbc8.com/) Powered by Discuz! X3.4