Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/reporting-services/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Reporting services 如何在RDL文本框中插入换行符?_Reporting Services_Rdl - Fatal编程技术网

Reporting services 如何在RDL文本框中插入换行符?

Reporting services 如何在RDL文本框中插入换行符?,reporting-services,rdl,Reporting Services,Rdl,如何在RDL-2005文本框定义中插入换行符 示例:如何在文本框内的换行符上显示换行符: `<Textbox Name=""RdlDescriptorLegendTextbox""> <Value>Foo FooNewline</Value> </Textbox>` ` 福福新线 ` 我可能遗漏了一些东西,但我可以这样做: <Textbox Name="textbo

如何在RDL-2005文本框定义中插入换行符

示例:如何在文本框内的换行符上显示换行符:

`<Textbox Name=""RdlDescriptorLegendTextbox"">                                
      <Value>Foo FooNewline</Value>
</Textbox>`
`
福福新线
`

我可能遗漏了一些东西,但我可以这样做:

<Textbox Name="textbox10">
   <Value>Foo
    FoodNewline</Value>
</Textbox>

福
食品新线
编辑文本框表达式 试试像这样的东西

 ="1st line" & vbcrlf & "2nd line" 

谢谢你的意见。我不再从事rdl项目,因此无法验证这个想法。@sthiers答案是为了互联网上的大众利益。显然,两年后他的回答与你无关。。。至少我希望你不要等那么久D