Ejemplo n.º 1
0
        public ReportAnalysis(HandleInputs handleInputs, Main mainForm, TableCreator tablecreator)
        {
            this.tablecreator = tablecreator;
            this.handleInputs = handleInputs;
            this.mainForm     = mainForm;

            this.dataTable = new DataTable("Table");
            this.reports   = new List <Report>();
            this.rowToAdd  = new List <DataRow>();
        }
Ejemplo n.º 2
0
 private void button3_Click(object sender, EventArgs e)
 {
     tableCreator   = new TableCreator(this, handleInputs);
     reportAnalysis = new ReportAnalysis(handleInputs, this, tableCreator);
     reportAnalysis.analysisFiles();
 }