mirror of
https://github.com/loginov-dmitry/multithread.git
synced 2025-02-19 20:10:30 +02:00
16 lines
291 B
ObjectPascal
16 lines
291 B
ObjectPascal
program Ex4Proj;
|
|
|
|
uses
|
|
Forms,
|
|
Ex4Unit in 'Ex4Unit.pas' {Form1},
|
|
ProgressViewer in '..\CommonUtils\ProgressViewer.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|