private void CargarDetecion() { dtgDeteccion.DataSource = null; CLS_Deteccion Clase = new CLS_Deteccion(); Clase.MtdSeleccionarDeteccion(); if (Clase.Exito) { dtgDeteccion.DataSource = Clase.Datos; } }
private void CargarDeteccion(string Valor) { CLS_Deteccion Clase = new CLS_Deteccion(); Clase.MtdSeleccionarDeteccion(); if (Clase.Exito) { cboOrgano.Properties.DisplayMember = "Nombre_Deteccion"; cboOrgano.Properties.ValueMember = "Id_Deteccion"; cboOrgano.EditValue = Valor; cboOrgano.Properties.DataSource = Clase.Datos; } }