码迷,mamicode.com
首页 > 编程语言 > 详细

EPX-Studio操作多线程的方法

时间:2020-03-12 14:20:16      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:thread   现在   多线程   begin   bsp   lines   int   code   studio   

procedure TF1167908962.Button1Click(Sender: TObject);
begin
  ThIndex := 1;
  EPXThread1.StartThread;
  EPXThread2.StartThread;
end;

procedure TF1167908962.Button2Click(Sender: TObject);
begin
this.Alert(现在是 + DateTimeToStr(Now));
end;
procedure TF1167908962.EPXThread1Thread(Sender: TObject);
begin
  while ThIndex < 1000 do
  begin
    Inc( ThIndex );
    Memo1.Lines.Add( IntToStr(ThIndex) );
  end;
end;

procedure TF1167908962.EPXThread2Thread(Sender: TObject);
begin
  while ThIndex < 1000 do
  begin
    Inc( ThIndex );
    Memo2.Lines.Add( IntToStr(ThIndex) );
  end;
end;

 

EPX-Studio操作多线程的方法

标签:thread   现在   多线程   begin   bsp   lines   int   code   studio   

原文地址:https://www.cnblogs.com/xenli/p/12468815.html

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