水晶报表中的富文本框

发布于 2024-08-30 01:36:57 字数 114 浏览 4 评论 0原文

我在水晶报告中创建了富文本框来显示产品描述。一切都显示正常,但占用的字符数不超过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮生面具三千个 2024-09-06 01:36:57

这是 Crystal Reports 的限制。
您的查询中的选项

  1. 将每行的字段拆分为多个 65534 个字符长度的字段(问题是有多少个字段生成 1,2,3,4,5...可能是未知数量)
  2. 查询将行拆分为多行,并按每个新行具有 65534 字符长度字段的产品进行分组。示例是

    产品ID、产品名称、产品描述

    1,P1,[65534 个字符]

    1,P1,[更多文字]

    2,P2,[65534 个字符]

    2,P2,[65534 个字符]

    查询中的

    2、P2、[更多文本]

  3. 最后将描述导出到文件,并通过报表或 OLE 对象中的超链接插入文件。

This is a limitation of Crystal Reports.
Your options

  1. in your query split the field in to multiple 65534 character length fields for each row (problem would be how many fields to produce 1,2,3,4,5...could be an unknown quantity)
  2. 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]

  3. Finally export the description to a file and insert the file via a hyperlink in the report or an OLE object.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文