private void bfbModificar_Click(object sender, EventArgs e) { if (dgvDatos.SelectedRows.Count > 0) { bModifica = true; MuestraDatosControles(); HabilitaControles(true); HabilitaBotones(false); } else { cFuncion.MensajeError("Seleccione la fila que desea modificar!!"); } }
private void bfbEliminarAbono_Click(object sender, EventArgs e) { DialogResult result = cFuncion.MensajeConfirmacion("Realmente desea eliminar los datos?"); //preguntamos si esta seguro de eliminar o no los datos if (result == DialogResult.OK) { try { //CEExportacionDetalle objEntidadDetalle = new CEExportacionDetalle(); //CNExportacionDetalle objNegocioDetalle = new CNExportacionDetalle(); objEntidad.Abo_Id = Convert.ToInt32(dgvAbonos.CurrentRow.Cells[0].Value); objNegocio.EliminarAbono(objEntidad); MostrarBuscarTablaAbonos(iIdExportacion); LimpiarControlesExportacionesDetalle(); CalcularTotalDetalle(); dgvAbonos.ClearSelection(); } catch (Exception ex) { cFuncion.MensajeError("No se pudo eliminar el registro seleccionado: " + ex); } } }
private void bfbManto_Usuarios_Click(object sender, EventArgs e) { if (cFuncion.PuedeEliminar()) { ShowForm(FrmUsuarios.Instance); } else { cFuncion.MensajeError("Usted no tiene permisos para esta opción!!"); } }
private void FrmRpt_Vehiculos_Load(object sender, EventArgs e) { try { this.UP_REPORTE_VEHICULOSTableAdapter.Connection.ConnectionString = ConfigurationManager.ConnectionStrings["conectar"].ConnectionString; this.UP_REPORTE_VEHICULOSTableAdapter.Fill(this.DSReportes.UP_REPORTE_VEHICULOS); this.reportViewer1.RefreshReport(); } catch (Exception ex) { cFuncion.MensajeError(ex.Message.ToString()); this.reportViewer1.RefreshReport(); } }
private void FrmRpt_SOAT_Load(object sender, EventArgs e) { try { ReportParameter[] pParametros = new ReportParameter[1]; pParametros[0] = new ReportParameter("pFiltro", Filtro); reportViewer1.LocalReport.SetParameters(pParametros); this.UP_CONSULTA_VEHICULOS_SOATTableAdapter.Connection.ConnectionString = ConfigurationManager.ConnectionStrings["conectar"].ConnectionString; this.UP_CONSULTA_VEHICULOS_SOATTableAdapter.Fill(this.DSReportes.UP_CONSULTA_VEHICULOS_SOAT, FechaDesde, FechaHasta, VehiculoId); this.reportViewer1.RefreshReport(); } catch (Exception ex) { cFuncion.MensajeError(ex.Message.ToString()); this.reportViewer1.RefreshReport(); } }