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

            frmRL.ShowDialog();
        }
Example #7
0
 private void AddArguments(OReports pReport)
 {
 }
Example #8
0
 public FrmReportLoader(FileInfo pFile, string pReportLabel, OReports pReport)
     : this(pFile, pReportLabel, pReport, null)
 {
     InitializeComponent();
     PopForecastInfo();
 }