private void BtnExportEcono_Click(object sender, EventArgs e) { BLReporte bl = new BLReporte(); //REPORTE ECONOMICO GENERAL DialogFolderBuscar.SelectedPath = null; DialogFolderBuscar.ShowDialog(); bool band = bl.GenerarReporteEconomico((BLReporte.FiltroReporteEconomico)ComboBoxEcono.SelectedIndex, (int)NumericUDEcono.Value, (int)ComboBoxMesEcono.SelectedValue + 1, DialogFolderBuscar.SelectedPath); if (band) { MessageBox.Show("Generacion de Reporte Finalizado"); } }
private void BtnExportResult_Click(object sender, EventArgs e) { BLReporte bl = new BLReporte(); //REPORTE RESULTADO GENERAL DialogFolderBuscar.SelectedPath = null; DialogFolderBuscar.ShowDialog(); bool band = bl.GenerarReporteResultados((BLReporte.FiltroReporteResultados)ComboBoxResult.SelectedIndex, (int)NumericUDResult.Value, (int)ComboBoxMesResult.SelectedValue + 1, DialogFolderBuscar.SelectedPath); if (band) { MessageBox.Show("Generacion de Reporte Finalizado"); } }