CrystalReportGridViewer 的替代品
我有一个 Crystal Enterprise 10 自定义 ASP.NET 应用程序,它使用 CrystalReports.CrystalReportGridViewer
COM 对象向用户显示报表中的数据。我正在将应用程序转换为使用 BOXI R3.1,看起来 BOXI R3.1 中不存在此 COM 对象,并且我找不到任何等效的 .NET 组件。
是否有 CrystalReportGridViewer 的替代品?如果没有,提供同等功能的最佳方法是什么?
I have a Crystal Enterprise 10 custom ASP.NET application that uses the CrystalReports.CrystalReportGridViewer
COM object to display the data from the report to users. I am in the process of converting the application to use BOXI R3.1 and it looks like this COM object does not exist in BOXI R3.1 and I cannot find any equivalent .NET component.
Is there a replacement for CrystalReportGridViewer and, if not, what would the best way be to provide equivalent functionality?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
似乎没有
CrystalReports.CrystalReportGridViewer
的替代品或等效产品。实现此功能的唯一方法是使用现有的查看器,看看是否可以获得您想要的输出,或者使用 SDK 获取您感兴趣的数据,然后自己输出。 RowsetController< /a> 用于直接检索报告中的未格式化数据,可能对此方法有用。It appears that there is no replacement or equivalent to the
CrystalReports.CrystalReportGridViewer
. The only way to achieve this functionality is to use an existing viewer and see if you can get the output you want or to use the SDK to get the data you are interested in and then output it yourself. The RowsetController is used to retrieve unformatted data in the report directly and might be useful for this approach.