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();

        }

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM