git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@31 05c56307-c608-d34a-929d-697000501d7a
15 lines
323 B
ObjectPascal
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.
|