Display Multi-Line String on factBox

Hi,

How to display a multi line string in fact Box.

Ex. i have string like-

“Caption 1 - Amount 1\Caption 2 - Amount 2\Caption 3- Amount 3”.

want to display above string on fact-box like-

Caption 1 - Amount 1

Caption 2 - Amount 2

Caption 3- Amount 3

If you need to add it inside a RDLC it’s possible to use VBCRLF constant:

“Caption 1 - Amount 1” & VBCRLF & “Caption 2 - Amount 2” & VBCRLF & “Caption 3- Amount 3”.

i want it on fact Box in Sales Order Page.

Already tried setting MultiLine property of the control? Don’t know if work on both card and list factboxes.

And for carriage return/line feed use a text variable set in this way:

CrLf[1] := 13;
CrLf[2] := 10;