码迷,mamicode.com
首页 > Windows程序 > 详细

使用SetTimer函数为Delphi的Win控件设置时钟

时间:2014-09-10 17:27:40      阅读:300      评论:0      收藏:0      [点我收藏+]

标签:os   io   使用   ar   for   cti   on   c   r   

procedure Timertodo(var messag:Tmessage);message WM_TIMER;

procedure TForm1.FormCreate(Sender: TObject);
begin
settimer(form1.Handle,1001,600,nil);
end;

procedure TForm1.Timertodo;
begin
xsum:=0;
end;

procedure TForm1.FormClose(Sender: TObject; var Action: TCloseAction);
begin
killTimer(form1.Handle,1001);
end;

其中WM_TIMER消息没有在TControl和TWinControl中出现。因为SetTimer的第一个参数是句柄,所以我觉得不能给TControl设置,即使父Win控件可以转发给子图形控件,但是一般也没必要这样做。

使用SetTimer函数为Delphi的Win控件设置时钟

标签:os   io   使用   ar   for   cti   on   c   r   

原文地址:http://www.cnblogs.com/findumars/p/3964687.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!