multi thread delphi

Solutions on MaxInterview for multi thread delphi by the best coders in the world

showing results for - "multi thread delphi"
Eoin
03 Aug 2016
1type
2  TMultiThread = class(TThread)
3    protected
4      procedure execute; override; //Ctrl + Shift + C
5  end;
6  
7procedure TForm1.btnMutliThreadClick(Sender: TObject);
8begin
9  with TMultiThread.Create do
10    FreeOnTerminate := True;
11end;
12
13{ TMultiThread }
14
15procedure TMultiThread.execute;
16begin
17  inherited;
18
19  //Code here
20end;