SetTimer(1,1000,NULL); //设置时钟定时器 可以在oncreat()中调用
KillTimer(1); //删除定时器 可以在onclose()中调用
定时器相应函数
void CMainFrame::OnTimer(UINT nIDEvent)
{
// TODO: Add your message handler code here and/or call default
CTime time;
time=CTime::GetCurrentTime(); //得到当前时间
CString s=time.Format("%H:%M:%S");//格式化时间显示格式
m_wndStatusBar.SetPaneText(m_wndStatusBar.CommandToIndex(ID_INDICATOR_CLOCK),s);
CFrameWnd::OnTimer(nIDEvent);
}