Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / reporting

New line in textbox of Microsoft rdlc report

5.00/5 (14 votes)
16 Nov 2010CPOL 110.5K  
Ever tried to put a break in the textbox of the rdlc report? n and such don't work...
You have to put System.Environment.NewLine in the string,
so your excpression will look something like

= Fields!MyField1.Value + System.Environment.NewLine + Fields!MyField2

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)