http://www.programfan.com/club/showtxt.asp?id=176868
http://hi.baidu.com/f234f234/blog/item/f0a2d200179edb11728b65d9.html
http://www.kylinx.net/node/45/print
http://zhidao.baidu.com/question/5031867.html
http://flybirding007.spaces.live.com/blog/cns!aa8a20e3c3469716!124.entry
VC中基于 Windows 的精确定时
http://shirley329.blogchina.com/3439173.html 定时器(VC++)--原创
http://www.vczx.com/forum/printthread.php?threadid=9630 定时器怪事
可以在要执行按钮事件的窗口中加入定时器。 以CMyDialog为例: 在CMyDialog::OnCreate()中加入
SetTimer(1, 1000, NULL); 在CMyDialog::OnDestory()中加入KillTimer(1); 在CMyDialog::OnTimer()中加入
if(nEvent==1) { OnMyButton();//按钮事件响应函数 };
在OnCreate或者OnInitDialog中设置SetTimer(ID,duration,function )
在OnClose或者OnDestory中设置KillTimer(ID)
1、在你的工作区窗口的ResourceView里,在你的resources上单击右键,选择Resource Symbols,弹出对话框,选择New命令钮,在Name框里输入ID_TIMER,Value值保持默认,然后确定退出。
2、进入ClassWizard,在Message框里选择消息WM_TIMER,选择Add Function,VC 会自动增加OnTimer(UINT nIDEvent)函数,然后点击Edit Code命令钮,填加代码: KillTimer(ID_TIMER); MessageBox("Ok");
3、在你的需要计时的命令钮(例如:OnOK())函数中,添加代码: SetTimer(ID_TIMER,3000,NULL); //也可以设置5000,即5秒 。 最后,编译通过执行,点击需要计时的命令钮,3秒后会弹出MessageBox对话框;