Click here to Skip to main content
15,895,799 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I designed one report in report viewer(RDLC Report) of c#. I adjusted to display 14 rows per page. What I am trying to do is, display a messages below rows if rows are more that 14. How to do that. I want to display message like "Continue......". I don't know how to do that.

What I have tried:

I googled for that but came with no suitable result.
Posted
Comments
Nirav Prabtani 1-May-17 1:38am    
You can use paging in report instead of that.

If still you want to do that, Just check rows count from datatable like this

if(dt.Rows.Coun > 14){

//Do your stuff here

}

Let me know if still you have any query or concern
vijay_bale 1-May-17 6:26am    
where I have to add this code?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900