to hide the first column (index = 0):

vb Code:
  1. DataGridView1.Columns(0).Visible = False

to remove the row headers:

in properties...

RowHeadersVisible = False

to highlight the full row:

in properties...

SelectionMode = FullRowSelect