public FrmReportLoader(FileInfo pFile, string pReportLabel, OReports pReport, SortedList<string, object> parameters) { InitializeComponent(); _fileToLoad = pFile; _Report = pReport; _reportLabel = pReportLabel; _parameters = parameters; //PopForecastInfo(); }
public FrmReportLoader(FileInfo pFile, string pReportLabel, OReports pReport, SortedList <string, object> parameters) { InitializeComponent(); _fileToLoad = pFile; _Report = pReport; _reportLabel = pReportLabel; _parameters = parameters; //PopForecastInfo(); }
public FrmReportLoader(FileInfo pFile, string pReportLabel, OReports pReport) : this(pFile, pReportLabel, pReport, null) { InitializeComponent(); PopForecastInfo(); }
private void AddArguments(OReports pReport) { }
private void ShowRpt(FileInfo pFile, string pReportLabel, OReports pReport) { var frmRL = new FrmReportLoader(pFile, pReportLabel, pReport); frmRL.ShowDialog(); }