reportingservices 2005 - Force linebreak in VS05 SSRS textbox -
In a VS05 SSRS report, I have an area back from the database that I insert together.
Ex:
SELECT Field1 + '' Field2
I want to show it on a report in a text box but between In two fields with a line break.
I have tried:
field 1 + '\ r \ n' + field2
but of course, someone No luck
What special characters can I use to implement a line break in my cell?
You can enter CHAR (10) + CHAR (13) .
Still I advise you to use the Visual Basic character vbCrLf
in this case to format in the report instead of the database.
Comments
Post a Comment