19 lines
389 B
Plaintext
19 lines
389 B
Plaintext
program FindWindow;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
DFndWndMain in 'DFndWndMain.pas' {DlgFndWndMain},
|
|
DAngle in 'DAngle.pas' {DlgAngle},
|
|
ThdCloseSidebar in 'ThdCloseSidebar.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
ReportMemoryLeaksOnShutdown := DebugHook <> 0;
|
|
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TDlgFndWndMain, DlgFndWndMain);
|
|
Application.Run;
|
|
end.
|