FastReport .NET 上子报表的数量可变
我有一份打印销售信息的报告。该报告的数据源是一个 SellReport 对象。
现在我想打印不止一笔销售的信息,但不是固定数量的销售信息。我认为最好的方法是将集合作为数据源传递,并为集合的每个 SellReport 生成一个子报告。
有人知道如何动态创建子报表吗?
谢谢!
I have a report that prints the information a sell. The report's Data Source is a SellReport object.
Now I want to print the information of more than one sell, but not of a fixed number of sells. I think the best way is to pass a Collection as Data Source and for each SellReport of the collection it generates a subreport.
Anyone know how to create subreports dynamically?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是如何使用代码创建报告的示例
以及数据源的示例:
您可以使用列表而不是 int[]
并查看示例 \Demos\C#\DataFromBusinessObject
Here is example, how to create a report using code
And example for Data Source:
You can use a list instead of int[]
And look at example \Demos\C#\DataFromBusinessObject