unit_thread.pas
上传用户:fudikeji
上传日期:2015-08-23
资源大小:207k
文件大小:1k
源码类别:

Internet/IE编程

开发平台:

Delphi

  1. unit unit_thread;
  2. interface
  3. uses
  4.   Classes;
  5. type
  6.   QQJob = class(TThread)
  7.   private
  8.     { Private declarations }
  9.   protected
  10.     procedure Execute; override;
  11.   end;
  12. implementation
  13. { Important: Methods and properties of objects in visual components can only be
  14.   used in a method called using Synchronize, for example,
  15.       Synchronize(UpdateCaption);
  16.   and UpdateCaption could look like,
  17.     procedure QQJob.UpdateCaption;
  18.     begin
  19.       Form1.Caption := 'Updated in a thread';
  20.     end; }
  21. { QQJob }
  22. procedure QQJob.Execute;
  23. begin
  24.   { Place thread code here }
  25. end;
  26. end.