How to add a RichEdit band to fastreports 6
I use With TfrxMemoView.create(band) ... as in the programmers manual and that works fine.
I would like to have richedit control but there is no example on how to do this in the programmers manaual.
Tried TfrxRichView.create(band) ... but that doesn't work. Not recognized.
How to add rich text to FastReports 6?
Comments
I forgot to add cxRichEdit to the interface uses section or just add the control TfrxRichObject to the form. Now frxReport recognizes...
With TfrxRichView.Create(band) do
Note to anyone using this control programmatically, you can't use lines.savetostream like you do with TfrxMemo, you have to first say richedit.lines.savetostream(AStream).