在 VS 2010 RDLC 中将报表参数传递给子报表
将报表参数传递到 VS 2010 RDLC 中的子报表
我在定义报表参数并将其传递到 VS 2010 中的子报表时遇到了一些麻烦。在 VS 2008 的设计视图中,我能够右键单击并定义报表参数并将其传递。
在 VS 2010 中缺少该提示。所以我的问题是,如何将值从父报表传递到 VS 2010 中的子报表?
此外,这就是 VS 2010 内的“报表属性”对话框中显示的内容:
目前,我已经在 XML 中手动定义了子报表中的参数,但当我尝试传递一个参数时,我收到了来自主报表的错误。子报表的任何类型的参数。
错误是:
An error occurred during local report processing.
Value cannot be null. Parameter name: value
我没有在任何地方定义名为 value 的参数。
Passing Report Parameters to SubReport in VS 2010 RDLC
I'm having some troubles defining and passing report parameters to subreports in VS 2010. In VS 2008 in the design view I was able to right click and define the report parameter and have it passed through.
In VS 2010 that prompt is missing. So my question is, how can I pass a value from a parent report to a subreport in VS 2010?
Additionally, this is what is shown in the Report Properties dialog inside of VS 2010:
For the time being I have defined the parameter in the subreport manually in the XML but I'm receiving an error from the main report when I attempt to pass a parameter of any type to the subreport.
The error is :
An error occurred during local report processing.
Value cannot be null. Parameter name: value
Where I do not have a parameter named value defined anywhere.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
转到子报表 -> 报告数据窗格 -> 参数并添加您想要接收的参数。
转到主报告 -> 右键单击子报表 -> 子报表属性 -> 参数并添加相同的参数名称并从下拉列表中选择相关值。
处理
SubreportProcessing
事件并设置子报表的数据源。在我的例子中,主报告数据源的类型为List
,参数为OrderID
。示例代码如下。Goto SubReport -> Report Data Pane -> Parameters and add the parameter you want to receive.
Goto MainReport -> Right-click SubReport -> Subreport Properties -> Parameters and add the same paramter name and pick the relevant value from the dropdown.
Handle the
SubreportProcessing
event and set the datasource for the subreport. In my case the main report datasource was of typeList<Order>
and the parameter wasOrderID
. Sample code below.