I need to change the color of a row when my form loads. I'm using the following code, but it changes the color of all the rows...any suggestions?


VB Code:
  1. Dim i As Integer
  2.         With ds.Tables("checks")
  3.             For i = 0 To .Rows.Count - 1
  4.                 If .Rows(i)("check_no") = "2" Then
  5.                     dgView.BackColor = Color.Red
  6.                 End If
  7.             Next
  8.         End With