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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Paging in Reports

Status
Not open for further replies.

Pavans

Programmer
Dec 4, 2001
5
IN
Hi,
Iam using crystal reports in VS.NET with C#.
iam generating reports using Crystal reports.
my Reports are of multiple pages but iam able to see only first page.
iam using Crystal Reports viewer control provided by VS.NET.
the control has buttons for page navigations.
but paging is not happening.
so pls help me how to navigate through pages of crystal report.
Thanks in advance
Pavan
 
I am not too familiar with Crystal Reports, but usually you have to tell the program what to do when you click on the pager. Try to create a sub that makes the report scroll to the next page.

J
 
Make sure that your CrystalReportViewer has these properties set:

CrystalReportViewer1.DisplayToolbar = true;
CrystalReportViewer1.SeparatePages = true;
CrystalReportViewer1.ClientTarget = ClientTarget.Auto;

if this doesn't solve the problem we might need to check out yoru code.

hth Daren J. Lahey
Just another computer guy...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top