如何找到水晶报告打印数量?

时间:2010-11-26 05:20:51

标签: winforms crystal-reports

我正在使用带有C#的Crystal Report 2010,有一个WinForm,并希望在Label中向用户显示M的Page N,同时打印水晶报告。 我怎么能阻止它?

我在ReportViewer中实现的代码:

使用System; 使用CrystalDecisions.CrystalReports.Engine; 使用CrystalDecisions.Windows.Forms; 使用CrystalDecisions.Web;

命名空间ComboSearch.Reports {     public partial class ReportViewer:System.Web.UI.Page     {

        ReportDocument rpt = new ReportDocument();

    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            string path = Server.MapPath("Employee.rpt");
            rpt.Load(path);
            CrystalReportViewer1.ReportSource = rpt;                
        }
    }
}

}  提前谢谢。

1 个答案:

答案 0 :(得分:0)

显示“M页的N”,打印报告可以通过将其作为字段插入报表本身来完成,并根据您的要求进行定位。

要插入它,请使用特殊字段选项插入“Page N of M”字段。