I have a datargid that I want to highlight if there is text in a row.
Here is my short lived attempt
I do not know how to check and see if a row has text in it.
CODE
Dim x As Integer = 0
Dim i As Integer = 1
While x < DataGridView1.Rows.Count - 1
While i < DataGridView1.Columns.Count - 1
Dim c As DataGridViewCell = DataGridView1.Rows(x).Cells(i)
DataGridView1.Rows(x).DefaultCellStyle.BackColor = Color.Yellow
x = x + 1
i = i + 1
End While
End While