本文介绍了获取选择的参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


在一个报告(商业智能报告项目)中,我有一个与此查询相关的数据集:
从(@MonthId)中的MonthId的顺序中选择*
在另一个dataSet中,我有一个查询,它返回Month Table中的所有Month,并将其绑定到@MonthId参数,并且该参数启用MultipleValue.
因此,到目前为止,在预览"模式下,一个组合框列出了月份,用户可以选择一个或多个月份,然后单击查看报告"按钮来查看该月份的订单.
我的问题是:
如何在报告的文本框中显示用户选择的选定月份?
实际上,我想在textBox中显示选定的参数文本.

Hi,
In a Report (Business Intelligence Report Project), I have a dataSet with this query:
select * from order where MonthId in (@MonthId)

In another dataSet I have a query returning all Months from Month Table, and bind it to @MonthId parameter, and the parameter is enable for MultipleValue.
So to this point in Preview mode a combobox is listing the months and user can select one or more month(es) and see the orders at that month by clicking view report button.
No my question is:
How can I show the selected months that user selects, in a textBox in my report?
Actually I want to show the selected parameters texts in a a textBox

推荐答案


这篇关于获取选择的参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 15:27