crystal 报告换行符
crystal report line break with line
这是我在 crystal 报告
中的公式
StringVar ReplaceString;
ReplaceString := Replace ({command.ExtraPersons}, ",", Chr(10));
ReplaceString
输出:
Sample One
Sample Two
预期输出必须有下划线
<u>Sample One</u>
<u>Sample Two</u>
谢谢,
试试这个:
StringVar ReplaceString;
ReplaceString :="<U>"+ Replace ({command.ExtraPersons}, ",", Chr(10))+"</U>";
ReplaceString
转到格式字段并在 Paragraph
选项卡上将文本表示更改为 HTML
编辑......................................
您可以使用 ChrW(13)
换行。
这是我在 crystal 报告
中的公式StringVar ReplaceString;
ReplaceString := Replace ({command.ExtraPersons}, ",", Chr(10));
ReplaceString
输出:
Sample One
Sample Two
预期输出必须有下划线
<u>Sample One</u>
<u>Sample Two</u>
谢谢,
试试这个:
StringVar ReplaceString;
ReplaceString :="<U>"+ Replace ({command.ExtraPersons}, ",", Chr(10))+"</U>";
ReplaceString
转到格式字段并在 Paragraph
选项卡上将文本表示更改为 HTML
编辑......................................
您可以使用 ChrW(13)
换行。