Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

Scrolling dataGridView control

I have a dataGridview control with 100 records. How can I programatically scroll to the 80th row so that the user can see it?
[125 byte] By [rkbnair] at [2007-11-11 7:33:23]
# 1 Re: Scrolling dataGridView control
this.dataGridView1.CurrentCell = this.dataGridView1[0, 79]; // based on a zero-based index
rkbnair at 2007-11-11 21:48:57 >