Componentes.Terceros.DevExp.../official/x.19/ExpressPrinting System/Demos/Delphi/DBTreeRL/DBTreeReportLink.dpr
2007-09-09 11:27:22 +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.