git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@8 05c56307-c608-d34a-929d-697000501d7a
15 lines
315 B
ObjectPascal
15 lines
315 B
ObjectPascal
program EQGrid4ReportLink;
|
|
|
|
uses
|
|
Forms,
|
|
EQGrid4RLMain in 'EQGrid4RLMain.pas' {EQGrid4RLMainForm};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.Title := 'Express Printing System EQGrid4RL Demo';
|
|
Application.CreateForm(TEQGrid4RLMainForm, EQGrid4RLMainForm);
|
|
Application.Run;
|
|
end.
|