Vinothkumar Nanjappan
Vinothkumar Nanjappan

Reputation: 11

crystal reports - display RTF data

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,

  1. @Text field object right click select Format Object-> Paragraph tag, selects Text Interpretation as RTF Text.

  2. 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

Answers (2)

Rajeev
Rajeev

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

Emanuele Greco
Emanuele Greco

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

Related Questions