Carriage Returns and Line Breaks

I have an address field that is coming back as a single field with carriage returns and line breaks and I would like to have it properly wrap in a single box, but the wrapping is all off. How can I get this to properly break Thanks

Answer this question

Carriage Returns and Line Breaks

  • ArunDeivanayagam

    try select field1 + char(13) + char(10) + field2



  • kob_kob

    Nope. That is not the issue. It is cangrow = true.

    What I want is to take a field that comes out as:

    John Smith CR LB 123 Main Street CR LB Anytown, MA 01888 CR LB USA

    as

    John Smith

    123 Main Street

    Anytown, MA 01888

    USA

    What I am getting is:

    John Smith 123

    Main Street Anytown,

    MA 01888 USA

    So I am looking how to read the CR and LBs and maybe replace them with BR tags, not sure.


  • jn4u

    Make sure you have text box property "cangrow" to true.

  • Astronutty

    Also... what is being returned to indicate the line break are char(13)s. I am recreating a report that I had lost and was able to resolve this at one time, but forget how I got around it.
  • Carriage Returns and Line Breaks