home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 5 for Professionals
/
DELPHI5.iso
/
Runimage
/
Delphi50
/
Demos
/
Threads
/
thrddemo.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1999-08-11
|
221 b
|
14 lines
program ThrdDemo;
uses
Forms,
ThSort in 'ThSort.pas' {ThreadSortForm},
SortThds in 'SortThds.pas';
{$R *.RES}
begin
Application.CreateForm(TThreadSortForm, ThreadSortForm);
Application.Run;
end.