private void dgvRolForma_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { frmRolForma fr = new frmRolForma(); fr.rolform = temList[dgvRolForma.CurrentCell.RowIndex]; AbrirVentana(fr); LoadGrid(); }
private void btnModificar_Click(object sender, EventArgs e) { if (dgvRolForma.CurrentCell.RowIndex >= 0) { frmRolForma fr = new frmRolForma(); fr.rolform = temList[dgvRolForma.CurrentCell.RowIndex]; AbrirVentana(fr); LoadGrid(); } else { MessageBox.Show("Debes selecciona un elemento para poder modificar"); } }