Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem with Crystal Report Viewer Control

Status
Not open for further replies.

Videla

Programmer
Jul 28, 2005
98
US
Hi All,
I am using Crsytal report viewer control to display the crsytal report. My Crystal report has more than 10000 rows, so in a web page it shows first 1000 rows only. I am not able to scroll to other records in the report. I need a scroll bar in the report viewer such a way that users can able to scroll to other records in the report. Is there any way to get other records.

Other Details
Crystal Designer XI
ASP.NET
Crystal Report Viewer Control
 
The viewer should, by default, have paging capibility. It will split the report into pages based on your page settings. Also, there is a grouptree property that can be used to quickly select pages(groups) in a report.

Jim
 
Let me try explain in more clear way. We are using crystal report viewer control to display the output of crystal report.
we have set the crystalreport viewere properties as below

DisplayBottomToolbar = False
DisplayToolbar = False
DisplayGroupTree = False

Now assume the query for the user selection returns 300 rows and internet explorer can display 100 rows in one screen. So it is showing only 100 recrods (Just one page)
As our customer do not want to see builit-in crystal toolbar, group tree for page navigation, we thought that by making the property to flase, It will display all recrods and automatically vertical scroll bar will be visible when more recrods come. But unfortunately it is showing only records fitting to one page.
How can we make sure that all records will be displayed in Internet Explorer with vertical scrollbar (WITHOUT using GROUPTREE propery to viewer). Highly appreciate your help.


Thanks
Ravi
 
As far as I knw, there is no way. Crystal Reports is in control at that point. It will place the amount of rows on the report based on the page size. If you don't show the navaigation toolbar, there is no way to move to the subsequent rows.
Why don't they want to see the controls. I assume that they want more than basic reporting capabilities and that's why you chose to use CR. You can use a datagrid, but I am sure you are doing summing and totals etc, which is easier with CR.
Basically, the customer cannot always have thier cake and eat it too. Explain to them that if they want advanced reports, that they have to use the sofware's functionality(be it CR or something else).
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top