FastReport使用

1、控件、参数赋值

            try
            {
                FastReport.Report report = new FastReport.Report();
                string filename = @"C:\Users\Administrator\Desktop\Template\bdcqzs.frx";
                report.Load(filename);

                string textBarcode = "ceshi001";
                FastReport.TextObject pTextPrint = report.FindObject("txtqlr") as FastReport.TextObject;
                pTextPrint.Text = textBarcode;

                report.SetParameterValue("gyqk", "gyqk");

                report.Show();

            }
            catch (Exception err)
            {
                MessageBox.Show(err.Message);
            }

2、报表打印

                FastReport.Report report = new FastReport.Report();
                string filename = @"C:\Users\Administrator\Desktop\Template\bdcqzs.frx";
                report.Load(filename);

                string textBarcode = "ceshi001";
                FastReport.TextObject pTextPrint = report.FindObject("txtqlr") as FastReport.TextObject;
                pTextPrint.Text = textBarcode;

                report.SetParameterValue("gyqk", "gyqk");

                report.PrintSettings.ShowDialog = false;      //不弹出打印设置框
                report.PrintSettings.Printer = "Microsoft XPS Document Writer";   // 设置默认打印机. 
                report.Print();

 

posted @ 2017-09-12 16:22  恋上微笑的天使  阅读(606)  评论(0)    收藏  举报