private void btnVerCitas_Click(object sender, EventArgs e) { try { frmVerReporte Reporte = new frmVerReporte(1, Comun.IDSucursalCaja); this.Visible = false; Reporte.ShowDialog(); Reporte.Dispose(); this.Visible = true; } catch (Exception ex) { this.Visible = true; MessageBox.Show(Comun.MensajeError, Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Error); LogError.AddExcFileTxt(ex, "frmCitas ~ btnBuscar_Click"); } }
private void toolsm_caja_cerrar_Click(object sender, EventArgs e) { try { frmCierreCaja cerrarCaja = new frmCierreCaja(); cerrarCaja.ShowDialog(); cerrarCaja.Dispose(); if (cerrarCaja.DialogResult == DialogResult.OK) { this.DialogResult = DialogResult.Cancel; frmVerReporte Reporte = new frmVerReporte(2, Comun.IDCaja); this.Visible = false; Reporte.ShowDialog(); Reporte.Dispose(); this.Visible = true; } } catch (Exception ex) { MessageBox.Show(Comun.MensajeError, Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Error); LogError.AddExcFileTxt(ex, "frmMenuInicio ~ toolsm_caja_cerrar_Click"); } }