14 lines
243 B
ObjectPascal
14 lines
243 B
ObjectPascal
|
|
program DBTreeReportLink;
|
||
|
|
|
||
|
|
uses
|
||
|
|
Forms,
|
||
|
|
DBTreeRLMain in 'DBTreeRLMain.pas' {DBTreeRLMainForm};
|
||
|
|
|
||
|
|
{$R *.RES}
|
||
|
|
|
||
|
|
begin
|
||
|
|
Application.Initialize;
|
||
|
|
Application.CreateForm(TDBTreeRLMainForm, DBTreeRLMainForm);
|
||
|
|
Application.Run;
|
||
|
|
end.
|