Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
Hi All,

In my report there is more than one page. I want to display all pages by using a scroll. Currently, I've to use the previous page button or next page button.

Is there anyway to display all pages by means of scroll in the report?
:doh:
Posted
Updated 24-Feb-16 1:16am
v2

jisha Johnson wrote:
I want to display all pages by using a scroll.


I believe you want to navigate to other page using scroll.

I have seen something similar in SSRS but not in Crystal. Try to set focus on page number of Crystal Viewer, and see if scroll works on it.
If not, i don't think you will be able to.

Though other option might be to avoid pagination and show all content in one page in viewer. Yet, what you are asking for is not this.
 
Share this answer
 
Comments
jisha Johnson 15-Jun-10 0:33am    
I'm getting one page at a time. If I click on next button I'm getting the second page. I want to get all pages by scroll. I mean instead of clicking next ya previous button I want to go through all pages
Sandeep Mewara 15-Jun-10 1:54am    
I doubt that' possible! You are trying to have a custom crystal viewer.
jisha Johnson 15-Jun-10 2:03am    
K. Thanks for ur comments. One more question.
I've a group value in my report. Is it possible to reset the record number after one group value?
I've seen reset page number. Bt I want to reset number. I mean I want to start the numbering of records of one group from 1

jisha Johnson 15-Jun-10 3:21am    
Ya I got answer for my second question. It can be done using running total field Thank u all
After databind you can Set SeparatePages property to false of CrystalReportViewer control.
crvDetail.DataBind();
crvDetail.SeparatePages = false;

this will hide prev./next button from the toolbar and page header of the report apears first time only.
 
Share this answer
 
v4
Comments
Dalek Dave 15-Sep-10 10:36am    
Good Answer.
Ekta87 9-Feb-11 0:35am    
hi!

thx for help..it works fine for me
dajask 27-Jun-11 10:40am    
Please could u help me about it, i use VS2005 and i get the error crvTest does not contain a deffinition for SeparatePages

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