Multi Line / Line Break in a text box

suspectsuspect Member Posts: 16
I´ve a text box in a form in wich several other text boxes come together (built bei using := a + b + c)

How can I make a line break after each text line?

Comments

  • krikikriki Member, Moderator Posts: 9,118
    You must put the textbox-property Multiline=Yes.
    And use '\' between the strings:
    e.g. txtString1 + '\' + txtString2 + '\' + txtString3
    Regards,Alain Krikilion
    No PM,please use the forum. || May the <SOLVED>-attribute be in your title!


  • eYeeYe Member Posts: 169
    SourceExpr of textbox d := a + '\' + b + '\' + c

    And multiline property set to YES
    Kind Regards,
    Ewald Venter
  • suspectsuspect Member Posts: 16
    Thanks a lot... :D
Sign In or Register to comment.