首页 > Windows开发 > 详细

C# FastReport .NET打印

时间:2019-08-23 16:28:23      阅读:160      评论:0      收藏:0      [点我收藏+]

引用DLL : FastReport.dll

 

 

 FastReport.Report sender = new FastReport.Report();
            try
            { 
             sender.Load("fastreport 编写的打印模板frx");
             FastReport.Utils.Config.ReportSettings.ShowProgress = false;
                    //设置不可预览模式
                    sender.PrintSettings.ShowDialog = false;
                   // sender.Show();
                    sender.Print();
            }
            catch (Exception ex)
            {
                return false;
            }
            finally
            {
                sender.Dispose();
            }        

 

C# FastReport .NET打印

原文:https://www.cnblogs.com/Song2333/p/11400714.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!