git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@26 05c56307-c608-d34a-929d-697000501d7a
14 lines
255 B
ObjectPascal
14 lines
255 B
ObjectPascal
program OrgChartReportLink;
|
|
|
|
uses
|
|
Forms,
|
|
OrgChartRLMain in 'OrgChartRLMain.pas' {OrgChartRLMainForm};
|
|
|
|
{$R *.RES}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TOrgChartRLMainForm, OrgChartRLMainForm);
|
|
Application.Run;
|
|
end.
|