Thanks Guys!

is using a while loop like this a bad idea, is their an easier/better way?

vb Code:
  1. Private Sub Content_CellContentClick_1(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellMouseEventArgs) Handles Content.CellMouseDown
  2.         Dim i As Integer = 0
  3.         While i < Content.Rows.Count
  4.             Content.Rows(i).Selected = False
  5.             i = i + 1
  6.         End While
  7.         If e.Button = Windows.Forms.MouseButtons.Right Then
  8.             Content.Rows(e.RowIndex).Selected = True
  9.         End If
  10.     End Sub