this application was created using the trial version of the xtrareports 解决方法

news/2024/10/21 20:10:04/
XtraReport3 xtraReport = new XtraReport3();
var mlc = sp.tiaoma.ToList();
xtraReport.DataSource = mlc;ReportPrintTool tool = new ReportPrintTool(xtraReport);//操作要显示什么按钮
tool.PrintingSystem.SetCommandVisibility(new PrintingSystemCommand[]{
PrintingSystemCommand.Open,
PrintingSystemCommand.Save,
PrintingSystemCommand.ClosePreview,
PrintingSystemCommand.Customize,
PrintingSystemCommand.SendCsv,
PrintingSystemCommand.SendFile,
PrintingSystemCommand.SendGraphic,
PrintingSystemCommand.SendMht,
PrintingSystemCommand.SendPdf,
PrintingSystemCommand.SendRtf,
PrintingSystemCommand.SendTxt,
PrintingSystemCommand.SendXls
}, CommandVisibility.None);
tool.ShowPreview();

 

转载于:https://www.cnblogs.com/woaijingjing/p/10557573.html


http://www.ppmy.cn/news/763208.html

相关文章

浅谈心电信号处理(2)--心电数据库

所谓“工欲善其事,必先利其器“,我们在完成软件算法的设计后,必须通过数据进行验证,否则再好的算法也只能是空中楼阁,水中月镜中花。只有通过大量的数据验证后,才能说设计的算法是合格的,当然这…

CVPR 2022数据集汇总|包含目标检测、多模态等方向

编辑丨极市平台 M5Product Dataset 论文地址:https://arxiv.org/abs/2109.04275 数据集地址:https://xiaodongsuper.github.io/M5Product_dataset/index.html M5Product 数据集是一个大规模的多模态预训练数据集,具有针对电子产品的粗粒度和细…

LAHeart2018左心房分割实战

2018 Atrial Segmentation Challenge 数据准备 The Left Atrium (LA) MR dataset from the Atrial Segmentation Challenge 数据集下载地址:Data – 2018 Atrial Segmentation Challenge (cardiacatlas.org) 数据集结构: Training_Set ├── 0RZDK2…

MIT-BIH Atrial Fibrillation Database(afdb)房颤数据库的介绍以及读取

MIT-BIH Atrial Fibrillation Database(afdb)房颤数据库 数据库地址:https://archive.physionet.org/cgi-bin/atm/ATM 数据库包括25例心房颤动(阵发性颤动)的受试者的长期ECG记录。其中23例数据包括两个ECG信号(.dat文件&#x…

使用卷积神经网络进行专家级别的心率不齐检测

使用卷积神经网络进行专家级别的心率不齐检测:Cardiologist-Level Arrhythmia Detection with Convolutional Neural Networks 摘要: 我们开发了一种能够检测多种心率不齐的算法(基于穿戴式心电图监测器采集的信号),…

MIT 心拍类型注释

为方便查阅和理解MIT心拍类型,特注释各类心拍的类型,方便用于心电信号类型的分类研究。 MIT心拍类型 label_storesymboldescription中文描述0 Not an actual annotation 1N Normal beat正常心搏2L Left bundle branch block beat左束支传导阻滞3R …

rocketmq客户端日志过大造成磁盘使用率占用过高

目录 问题现象 排查占用 自定义客户端日志配置未生效 总结 问题现象 收到项目报警:磁盘占用率超标通知 排查占用 从上述可以看出,实质是跟正常业务日志无关的,/home/work/log挂出来了,与/根目录下无关 查看根目录下日志占用…

【Qt QML入门】第一个Quick应用

运行结果: 打开Qt Creator,创建一个Qt Quick Qpplication,IDE为我们创建一个应用工程,其中包含如下文件: .pro工程文件,我们通过它来打开整个工程: QT quick# You can make your code fail to…