How can I select a particular range of rows in a DataGridView programmatically at runtime?
DataGridView
Try this:
DataGridViewRow row = dataGridView1.Rows[index row you want]; dataGridView1.CurrentRow = row;
Hope this help!