In my application, I provide the help in different language. So I read a different file for each language.
In some place of my text, I want to insert new line, so I use \n to insert new line.
This "\n" is working fine if it is Embedded in the app, but does not work if it comes form a file
To clarify:
This is working fine:
But if the text is from a text file:
and I read the text file and display it
It does not work, and the \n are displayed instead of creating a new line.
Here is my test app:
Test_Linefeed.aia (2.0 KB)
and the result: Top with embedded text, below with text from a file:
What is the correct way to have linefeed in a text from a file?