Concatenate String in Script
I know that to concatenate string use + sign. But this adds a line break. How can just concatenat strings without the line break added?
For example using this in the script:
Memo1.Text := Memo1.Text + 'line is broken here';
For example using this in the script:
Memo1.Text := Memo1.Text + 'line is broken here';
Comments
Shouldn't the + string sign behaves like standard Delphi behaves? Is this a bug or a non requested feature?
Memo8.text:=Copy(Memo8.Text,1,Length(Memo8.Text)-2)+'XXX';