private void Btn_buscarPerfil_Click(object sender, EventArgs e) { Frm_consultaPerfil consultaPerfil = new Frm_consultaPerfil(); consultaPerfil.ShowDialog(); if (consultaPerfil.DialogResult == DialogResult.OK) { txt_idPerfil.Text = consultaPerfil.Dgv_consultaPerfil.Rows[consultaPerfil.Dgv_consultaPerfil.CurrentRow.Index].Cells[0].Value.ToString(); cmb_TipoContratacion.Enabled = true; } }
private void Btn_consultaPerfil_Click(object sender, EventArgs e) { Frm_consultaPerfil consultaPerfil = new Frm_consultaPerfil(); consultaPerfil.ShowDialog(); if (consultaPerfil.DialogResult == DialogResult.OK) { Txt_idPerfil.Text = consultaPerfil.Dgv_consultaPerfil.Rows[consultaPerfil.Dgv_consultaPerfil.CurrentRow.Index]. Cells[0].Value.ToString(); } }
private void Btn_consultar_Click(object sender, EventArgs e) { if (presionado == false) { DeshabilitarBotones(); Btn_consultar.Enabled = true; presionado = true; } else { Frm_consultaPerfil consultaPerfil = new Frm_consultaPerfil(); consultaPerfil.ShowDialog(); if (consultaPerfil.DialogResult == DialogResult.OK) { Txt_idPerfil.Text = consultaPerfil.Dgv_consultaPerfil.Rows[consultaPerfil.Dgv_consultaPerfil.CurrentRow.Index]. Cells[0].Value.ToString(); Txt_nombre.Text = consultaPerfil.Dgv_consultaPerfil.Rows[consultaPerfil.Dgv_consultaPerfil.CurrentRow.Index]. Cells[1].Value.ToString(); Txt_detalle.Text = consultaPerfil.Dgv_consultaPerfil.Rows[consultaPerfil.Dgv_consultaPerfil.CurrentRow.Index]. Cells[2].Value.ToString(); Txt_estado.Text = consultaPerfil.Dgv_consultaPerfil.Rows[consultaPerfil.Dgv_consultaPerfil.CurrentRow.Index]. Cells[3].Value.ToString(); Txt_nombre.Focus(); presionado = false; HabilitarBotones(); } } }