A good way to force a new line is to use the ascii character for LineFeed. Carrige ride might also be needed. This can be used in Text variables interted into reports.
Define a text variable.
variable[1] := 10; //Ascii for Linefeed
TextString := 'Text' + variable + 'text on new line'
Comments
What do you mean by 2 lines?
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
it work fine with classic report but in RTC report it display "Welcome \Cambodia"
A := "Welcome"
B :="Cambodia"
then you combine them
c:= a+b
then you want them seperated on two lines again.
Is this for a report? The just put the two seperate field togther one under the other.
:-k
You mention RTC - so should this post be in forum: NAV Three Tier?
http://www.BiloBeauty.com
http://www.autismspeaks.org
Define a text variable.
Output:
Text
text on new line
If you want the string Welcome Cambodia instead of WelcomeCambodia, try giving a space before Cambodia like ' Cambodia'.