D
delnus
Unregistered / Unconfirmed
GUEST, unregistred user!
我写了一个控件,它的文本内容为系统的时间,每次装载时,它显示为系统的当前时间,
可是这个时间在运行时无法即时更新。
举个简单的例子
procedure TForm1.Button1Click(Sender:TObject);
begin
Label1.Caption:=TimeToStr(Time);
end;
在运行的时候,如何使label1的标题显示系统的最新时间?
可是这个时间在运行时无法即时更新。
举个简单的例子
procedure TForm1.Button1Click(Sender:TObject);
begin
Label1.Caption:=TimeToStr(Time);
end;
在运行的时候,如何使label1的标题显示系统的最新时间?