Reputation: 11
I am currently working in the Crystal Reports.
Please anyone tell me how to convert the RTF file data (that are retrieved by dataset) to display in the crystal report Text Object.
I tried the following things,
@Text
field object right click select Format Object-> Paragraph tag, selects Text Interpretation as RTF Text.
In formula field i typed {DT.Text_Description}
But I am not getting the Text in the report.
Anyone help me.
Upvotes: 0
Views: 5613
Reputation: 1
Crystal report side is correct, but how you trasfer the data to data set, instead of text you should take RTF:
Me.Dset.Tables("Table").Rows(row).Item("ItemName") = RTBox.Rtf - correct
Me.Dset.Tables("Table").Rows(row).Item("ItemName") = RTBox.Text- Not correct
Upvotes: 0
Reputation: 12731
You did well, this is the right way to display RTF data.
Maybe a typo error; instead o typing the field could you click on tha available fields?
Upvotes: 0