Concatenate String in Script

edited April 2006 in FastReport 3.0
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';

Comments

  • edited 9:23PM
    Delete last char use Delete() funtion.
  • edited April 2006
    I tried this in the script:
    Delete (Memo1.Text, Length(Memo1.Text)-1, 1);
    
    but it didn't work.
    Shouldn't the + string sign behaves like standard Delphi behaves? Is this a bug or a non requested feature?
  • foxfox
    edited 9:23PM
    Waheed wrote:
    I tried this in the script:
    Delete (Memo1.Text, Length(Memo1.Text)-1, 1);
    
    but it didn't work.
    Shouldn't the + string sign behaves like standard Delphi behaves? Is this a bug or a non requested feature?
    Try

    Memo8.text:=Copy(Memo8.Text,1,Length(Memo8.Text)-2)+'XXX';

Leave a Comment