private void btnImpresion_Click(object sender, EventArgs e) { try { if (this.dgvFaltas.SelectedRows.Count == 1) { this.Visible = false; ReporteFaltas Datos = this.ObtenerDatosReporte(); frmVerReporteFaltas VerReporte = new frmVerReporteFaltas(Datos.IDReporte); VerReporte.ShowDialog(); VerReporte.Dispose(); //this.DialogResult = DialogResult.OK; this.Visible = true; } else { MessageBox.Show("Seleccione una fila.", Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Error); } } catch (Exception ex) { LogError.AddExcFileTxt(ex, "frmReportesFaltas ~ btnImpresion_Click"); MessageBox.Show(Comun.MensajeError, Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void btnGuardar_Click(object sender, EventArgs e) { try { this.txtMensajeError.Visible = false; List <Error> Errores = this.ValidarDatos(); if (Errores.Count == 0) { this.Visible = false; ReporteFaltas Datos = this.ObtenerDatos(); ReporteFaltas_Negocio Neg = new ReporteFaltas_Negocio(); int IDReporte = Neg.GenerarReporteFaltas(Comun.Conexion, Datos.FechaInicio, Datos.FechaFin, Comun.IDUsuario); if (IDReporte > 0) { //Generar el reporte frmVerReporteFaltas VerReporte = new frmVerReporteFaltas(IDReporte); VerReporte.ShowDialog(); VerReporte.Dispose(); this.DialogResult = DialogResult.OK; } else { MessageBox.Show("Ocurrió un error al generar el reporte.", Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Error); } this.Visible = true; } else { this.MostrarMensajeError(Errores); } } catch (Exception ex) { LogError.AddExcFileTxt(ex, "frmNuevoReporteFaltas ~ btnGuardar_Click"); MessageBox.Show(Comun.MensajeError, Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Error); } }