Let's say I have a DataGridView
Control that displays about 100 records of a specified table. Every time a user scrolls down to the lowest point, I want to add another 100 records to the DataSet
that stands behind my DataGridView
.
I knwo that a DataGridView Control has a Scroll Event like private void DataGridView_Scroll(object sender, ScrollEventArgs e)
, and that the ScrollEventArg
s give me the ScrollOrientation
and the ScrollEventType
. But how exactly do I figure out exactly when the scroll has reached the end of the scroll bar?
Tnks.