Hola quiero recorrer un datagridview por codigo y ubicarme en una fila que yo elija, estoy probando con esto:
Código:
For i As Integer = 0 To DataGridView1.Rows.Count - 1
If DataGridView1.Item(7, DataGridView1.CurrentRow.Index).Value = Codigo Then
Dim cell As DataGridViewCell = DataGridView1.CurrentCell
cell.Selected = True
End If
Next
Pero no me esta funcionando el seleccionar la fila, saludos.
PD: tambien probe currentrow pero me dice que es solo lectura.