- 积分
- 0
- 在线时间
- 3 小时
- 主题
- 3
- 注册时间
- 2015-11-18
- 帖子
- 12
- 最后登录
- 2017-1-12
- 帖子
- 12
- 软币
- 80
- 在线时间
- 3 小时
- 注册时间
- 2015-11-18
|
楼主 |
发表于 2015-11-19 09:22:25
|
显示全部楼层
为了打印,差点崩溃掉。
搞定了,为后人乘凉用。
// Create a report instance, assigned to a Print Tool.
ReportPrintTool pt = new ReportPrintTool(new XtraReport1());
// Invoke the Print dialog.
pt.PrintDialog();
// Send the report to the default printer.
pt.Print();
// Send the report to the specified printer.
pt.Print("myPrinter"); |
|