جرب هذا الكود
Rows << رقم الصف
Cells << رقم العمود المراد البحث فيه
PHP كود :
For i As Integer = 0 To DataGridView1.RowCount - 1
If DataGridView1.Rows(i).Cells(1).Value = Textbox1.Text Then
DataGridView1.Rows(i).Cells(1).Style.BackColor = Color.Red
End If
Next
Cells << رقم العمود المراد البحث فيه

