I have a "About" dialog in my Serie6600 application, which using a read-only CEikEdWin to show sapplication information. The text is in .LOC file for localization purpose.
I noticed that CEikEdwin doesn't show linebreak if I use '\n' in my text. Can anyone tell me how to make it do so? or is there any better way to show a read-only multi-paragraph text on a dialog?
You could first read the text of your to the richtext object and put line breaks (ELineBreak) in to it, and after fully reading your stuff to the richtext set that to be the content of your edwin.
I have the same problem
and at that time, i replace any '0x000D' or '0x000A' [ASCII returns/line breaks] into
'0x2029' or '0x2028'
I call them "Unicode Line Break" or even "Symbian Line Break"