Componentes.Terceros.DevExp.../official/x.38/ExpressPrinting System/Demos/Delphi/DBTreeRL/DBTreeReportLink.dpr
2008-08-27 11:56:15 +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.