You've already forked multithread
mirror of
https://github.com/loginov-dmitry/multithread.git
synced 2026-04-26 23:55:49 +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.
|