c#使用FastReports打印

        private void btnprint_Click(object sender, EventArgs e)
        {
            //报表路径
            string path = Application.StartupPath + "/FastReport/demo.frx";
            Report report = new FastReport.Report();
            report.Load(path);
    
            //设置参数
            report.SetParameterValue("ywh", "201811140001");
            //设置打印机
            report.PrintSettings.Printer = "Foxit Reader PDF Printer";
            //设置打印页码
            //report.PrintSettings.PageNumbers = "1-3";
            report.PrintSettings.PageNumbers = "1";

            //打印对话框
            report.PrintSettings.ShowDialog = false;

            //打印
            report.Print();

        }

 

posted @ 2018-11-14 16:10  恋上微笑的天使  阅读(3951)  评论(0)    收藏  举报