Componentes.Terceros.DevExp.../official/x.38/ExpressPrinting System/Demos/Delphi/MasterViewRL/MasterViewReportLink.dpr
2008-08-27 11:56:15 +00:00

15 lines
323 B
ObjectPascal

program MasterViewReportLink;
uses
Forms,
MasterViewRLMain in 'MasterViewRLMain.pas' {MasterViewRLMainForm};
{$R *.RES}
begin
Application.Initialize;
Application.Title := 'ExpressMasterView ReportLink';
Application.CreateForm(TMasterViewRLMainForm, MasterViewRLMainForm);
Application.Run;
end.