Componentes.Terceros.DevExp.../official/x.30/ExpressPrinting System/Demos/Delphi/DBTreeRL/DBTreeReportLink.dpr
2007-12-16 17:06:54 +00:00

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.