private void btn_buscbien_Click(object sender, EventArgs e) { try { dgv_bien.DataSource = Clsoporden.Buscar(txt_bien.Text); } catch (Exception ex) { MessageBox.Show(ex.ToString()); } }
private void btn_agregar_Click(object sender, EventArgs e) { try { if (dgv_bien.SelectedRows.Count == 1) { int id = Convert.ToInt16(dgv_bien.CurrentRow.Cells[0].Value); busq = Clsoporden.Obtenerclte(id); this.Close(); } else { MessageBox.Show("Debe de seleccionar una fila"); } } catch (Exception ex) { MessageBox.Show(ex.ToString()); } }