水晶报表中的富文本框
我在水晶报告中创建了富文本框来显示产品描述。一切都显示正常,但占用的字符数不超过 65534 个。我需要显示超过 65534 个,所以请任何人可以帮助我使用是否有任何其他控件(如 Richtext 框)来显示数据。
I have created rich text box in crystal reports for displaying product description. Everything is displaying properly but it is not taking more than 65534 characters. I need to display more than 65534, so please any one can help me to use is there any other control like richtext box to display the data.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 Crystal Reports 的限制。
您的查询中的选项
查询将行拆分为多行,并按每个新行具有 65534 字符长度字段的产品进行分组。示例是
产品ID、产品名称、产品描述
1,P1,[65534 个字符]
1,P1,[更多文字]
2,P2,[65534 个字符]
2,P2,[65534 个字符]
查询中的
2、P2、[更多文本]
最后将描述导出到文件,并通过报表或 OLE 对象中的超链接插入文件。
This is a limitation of Crystal Reports.
Your options
in your query split the row into multiple rows and group by product having a 65534 char length field for each new row. Example would be
ProductID, ProductName, ProductDescription
1, P1, [65534 characters]
1, P1, [more text]
2, P2, [65534 characters]
2, P2, [65534 characters]
2, P2, [More text]
Finally export the description to a file and insert the file via a hyperlink in the report or an OLE object.