cancel
Showing results for 
Search instead for 
Did you mean: 

How to add the paging at the footer on the report page?

Former Member
0 Kudos


Hi,

  On my crystal report page of vistual studio, there is paging(change page) at the top, if I want to add the paging at the bottom of report, how can I add it?  Could you please tell me?

  there is my code:

         ConnectionInfo connectionInfo = new ConnectionInfo();
        CrystalDecisions.CrystalReports.Engine.ReportDocument boReportDocument;

        string rptFile = ((BaseApplicationPage)(this.Page)).Decrypt(this.Page.Request.QueryString["Name"]);
        boReportDocument = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
        boReportDocument.Load(Server.MapPath("~/Crystal/" + rptFile));
        CrystalReportViewer1.ReportSource = boReportDocument;


        connectionInfo.ServerName = "XXXXX";
         connectionInfo.DatabaseName = "XXXXX";
        connectionInfo.UserID = "XXXXX";
        connectionInfo.Password = "XXXXX";

        TableLogOnInfos tableLogOnInfos = CrystalReportViewer1.LogOnInfo;
        foreach (TableLogOnInfo tableLogOnInfo in tableLogOnInfos)
        {
            tableLogOnInfo.ConnectionInfo = connectionInfo;

        }

at the top of image is old version on crystal report setting, now, my version of crystal report is crystal report 2011, how can I add the paging like old version?

thanks

Kelvin

Accepted Solutions (1)

Accepted Solutions (1)

former_member183750
Active Contributor
0 Kudos

Hi Kevin

Unfortunately, no way. That used to be a feature in one of the previous versions of CR, but is was removed and we have not had any luck getting it back.

- Ludek

Senior Support Engineer AGS Product Support, Global Support Center Canada

Follow us on Twitter

Answers (0)