当前位置: 移动技术网 > IT编程>开发语言>c# > C# FastReport .NET打印

C# FastReport .NET打印

2019年08月23日  | 移动技术网IT编程  | 我要评论

引用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();
            }        

 

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网