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.
相关问题
- Crystal Report SP26 SetDataSource() Method failed
- How do I jump to a specific line in a RichTextBox?
- Crystal Report in .NET Framework 4.0
- Disabling Smooth Scrolling on Richtextbox
- simple text color in rich text box
相关文章
- What is the best way to cleanup the resources used
- How to keep track of TextPointer in WPF RichTextBo
- How to pass a list of values into a crystal report
- Show ToolTip on RichTextBox
- Crystal Report Sub Report Page Break
- Issue related to vertical line in Crystal Reports
- Dynamically change database type, source etc in Cr
- Converting total time in integer into HH:MM format
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.