Hi,
> After I select a Row with
>
> this.dataGridView1.Rows[xRow].Selected = true;
>
> how to move this selected row to the top of the dataGridView1? (c# - 2005)
Something like:
dataGridView1.FirstDisplayedCell =
dataGridView1[dataGridView1.FirstDisplayedCell.ColumnNr, xRow];
or
dataGridView1.FirstDisplayedCell = dataGridView1[0, xRow];
HTH,
Greetings