line break report NAV 2013 r2

gonzy1981gonzy1981 Member Posts: 156
edited 2014-11-26 in NAV Three Tier
Hi there,
I'm dealing with the visual studio 2012 in order to do a new invoice for a client. I've created a textbox with the property CanGrow=TRUE and in the expression there are going to be two texts, and I'd like to put a new line between both texts. I've tried with =Fields!Text1.Value + chr(177) + Fields!Text2.Value but [-X [-X [-X [-X

Do you know, how could i solve this issue??
Thanks

Comments

  • MBergerMBerger Member Posts: 413
    try the vbCrLf constant instead of CHR$(177)
  • gonzy1981gonzy1981 Member Posts: 156
    Yeesss, it works!!! Thanks a lot!! =D> =D>
  • aceXaceX Member Posts: 165
    You can also use
    ... + System.Environment.NewLine + ....
    
Sign In or Register to comment.