I want to concatenate two variable in the sourceExpression of a TextBox
variable multiline in a report.
var1 + ' ' + var2 prints on the same line
but I want something like:
var1 + crlf + var2 where crlf means a line feed/return to print on two lines
without creating 2 different text variables.
Is that possible? How?
Thank you
var1 +'\' + var2
It seems to work correctly...Do you agree?
Can you use the STRSUBSTNO (String) fucntion + "\" in text line?
I have used it for this demand.
Thank you much
* It is same view for code: Message('Test 001'+ '\' + 'Test 002'). But in
first case you may use "multilanguage chars functionality".
CRLF[1] := 13;
CRLF[2] := 10;
If you want to produce one variable with the two segments do this:
NewText := STRSUBSTNO('%1%2%3',Var1,CRLF,Var2);
You can also use this as a source expression:
Var1 + CRLF + Var2