工控编程吧
标题:
上位机MFC如何获取系统当前时间?
[打印本页]
作者:
qq263946146
时间:
2019-10-20 12:43
标题:
上位机MFC如何获取系统当前时间?
void CDemoDlg::OnTest()
{
CTime time;
//获得当前时间
time = CTime::GetCurrentTime();
CString strText = _T("");
strText.Format(_T("%d-%d-%d\n%d:%d:%d"),
time.GetYear(), time.GetMonth(), time.GetDay(),
time.GetHour(), time.GetMinute(), time.GetSecond());
AfxMessageBox(strText);
}
复制代码
上面的代码可以添加一个按钮元件来调用。
主要是通过CTime的成员函数来实现。
欢迎光临 工控编程吧 (https://www.gkbc8.com/)
Powered by Discuz! X3.4