private void btnModificar_Click(object sender, EventArgs e) { if (grdCalidad.CurrentCell.RowIndex >= 0) { frmCalidad fr = new frmCalidad(); fr.cali = temList[grdCalidad.CurrentCell.RowIndex]; AbrirVentana(fr); LoadGrid(); } else { basecat.MensajeAdvertencia("Alerta","Debes selecciona un elemento para poder modificar"); } }
private void grdCalidad_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { frmCalidad fr = new frmCalidad(); fr.cali = temList[grdCalidad.CurrentCell.RowIndex]; AbrirVentana(fr); LoadGrid(); }