New line in textbox of Microsoft rdlc report 2

2011-03-08


Solution 1:

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

Solution 2:

As an alternate, you could use the VB newline constant vbCrLf, so your expression will look something like

= Fields!MyField1.Value + vbCrLf + Fields!MyField2.Value