I'm having a problem with the Stretch With Overflow,
specifically in relation to data that contains CRLF characters. It
seems to me that the rendering engine doesn't recognize the fact
that when it sees a CRLF, it should add on 1 line worth of space.
For example, if a query column has a few words in the first line,
two CRLF's then a few words in the third line, I only see the first
line.
I have a horrible workaround in place right now that goes like this for the field expression:
Replace(query.columnName, chr(13), RepeatString(chr(5),100)& chr(13),"All")
This works OK but produces inconsistent results, generating more space than required for most instances, and not enough for some.
Is there some better workaround that anyone's come up with? Is this a known issue?
TIA,
Joe
I have a horrible workaround in place right now that goes like this for the field expression:
Replace(query.columnName, chr(13), RepeatString(chr(5),100)& chr(13),"All")
This works OK but produces inconsistent results, generating more space than required for most instances, and not enough for some.
Is there some better workaround that anyone's come up with? Is this a known issue?
TIA,
Joe