18 lines
375 B
Plaintext
18 lines
375 B
Plaintext
program BS1MgPo;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
DBS1MgPoMain in 'DBS1MgPoMain.pas' {DlgBS1MgPo},
|
|
ManagerPolicy in '..\..\EXE_eCrmHomeEdition\Manager\ManagerPolicy.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
ReportMemoryLeaksOnShutdown := DebugHook <> 0;
|
|
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TDlgBS1MgPo, DlgBS1MgPo);
|
|
Application.Run;
|
|
end.
|