DataGrid View Paging

  • Thread starter Thread starter Goh
  • Start date Start date
G

Goh

Hi,
May I know any VS 2005 data component that support paging? Why Asp.Net
got a paging function but not Windows? How do we implement paging for
DataGrid for WindowsForms.


Best regards,
Goh
 
Hi Goh,

Thanks for your post.

Yes, winform datagrid does not support paging build-in. This is because
winform has more efficient UI response than webform IE, also implementing
paging in winform is much easier than in Asp.net.

To do paging for winform datagrid, we may just use a primary key in
DataTable to divide the datatable rows in several pages(views), then
display each view in the DataGrid as a page. For more information, please
refer to:
http://groups.google.com/groups?q=datagrid+paging+winform

Hope this helps

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
 
Back
Top