DataGridView.allow paging In C# application it possible to allow default pagination in Data grid view as same as we do in Datagrid any suggestion
Asked
Active
Viewed 4,117 times
0
-
DataGridView.allow paging In C# application it possible to allow default pagination in Data grid view as same as we do in Datagrid any suggestion http://www.codeproject.com/KB/grid/DataGridViewPaging.aspx – user7344825 Dec 27 '16 at 07:24
3 Answers
2
I think you need to take a look to below link it will help you, how to set paging and sorting for Datagridview.......... http://msdn.microsoft.com/en-us/library/aa479347.aspx

sikender
- 5,883
- 7
- 42
- 80
-
Hello, jones take a look to above link..and you find a good article on it. – sikender Sep 01 '11 at 06:29
1
DatagridView doesn't support paging by default. If you want it in there you'll need to implement it by yourself. the details of how to do that will depend on your underlying dataaccess technology

kmcc049
- 2,783
- 17
- 13
0
DataGridView cannot perform paging by default. Take a look at some source codes over google, or this project who solves this problem:
http://www.codeproject.com/KB/grid/DataGridViewPaging.aspx
Regards