VC获取当前时间(年月日,时分秒)

作者:小胖吴 | 创建时间: 2023-05-26
VC获取当前时间 (年月日,时分秒)...
VC获取当前时间(年月日,时分秒)

操作方法

打开Visual C++,点击菜单“文件”-“新建”-“工程”, 输入工程名“GetCurrentTime”,点击“确定”。

选择“基于对话框”,点击“完成”。

加入一个按钮Button1,并双击,点击“确定”进去。

加入代码如下: void CGetCurrentTimeDlg::OnButton1() { // TODO: Add your control notification handler code here char szTime[32]; CTime time; time = CTime::GetCurrentTime(); sprintf(szTime, "%4d-%.2d-%.2d %.2d:%.2d:%.2d", time.GetYear(), time.GetMonth(), time.GetDay(), time.GetHour(), time.GetMinute(), time.GetSecond()); SetWindowText(szTime); }

编译,运行。点击按钮,即可看到标题栏上的时间显示。

温馨提示

在其他版本的vc程序大同小异。
不支持Unicode。
点击展开全文

更多推荐