mirror of
https://github.com/loginov-dmitry/multithread.git
synced 2024-11-24 16:53:48 +02:00
16 lines
291 B
ObjectPascal
16 lines
291 B
ObjectPascal
program Ex3Proj;
|
|
|
|
uses
|
|
Forms,
|
|
Ex3Unit in 'Ex3Unit.pas' {Form1},
|
|
ProgressViewer in '..\CommonUtils\ProgressViewer.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|