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