Try setting the
DataGridView.MultiSelect=false;
and
DataGridView.SelectionMode = FullRowSelect;
You can read about the MultiSelect Property and SelectionMode Property in the MSDN library linked.
If you want the user to select multiple rows, then set MultiSelect to true.
DataGridView.MultiSelect=true;
EDIT
And then you can call your event like this:
private void dataGridView2_RowHeaderMouseClick(object sender, DataGridViewCellMouseEventArgs e)
{
dataGridView2.Rows[e.RowIndex].Selected = true;
}
To select individual cells within the data grid view and select the entire row on row header click, set the selection mode to RowHeaderSelect
DataGridView.SelectionMode = RowHeaderSelect;
The MSDN explanation for RowHeaderSelect is: Clicking a cell selects it. Clicking a row header selects the entire row.