Componentes.Terceros.DevExp.../official/x.26/ExpressPrinting System/Demos/Delphi/FlowChartRL/FlowChartReportLink.dpr

14 lines
261 B
ObjectPascal
Raw Normal View History

program FlowChartReportLink;
uses
Forms,
FlowChartRLMain in 'FlowChartRLMain.pas' {FlowChartRLMainForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TFlowChartRLMainForm, FlowChartRLMainForm);
Application.Run;
end.