Combobox これは、 (cmbCustomer)の選択に基づいてレポートを表示する私の VB.NET (2012) コードです。そのパラメーターcmbCustomer.textをレポートに出力したいと思います。
Private Sub btnShow_Click(sender As Object, e As EventArgs) Handles btnShow.Click
        Me.rpt_customerByDateTableAdapter.Fill(Me.customerByDateDataSet.rpt_customerByDate,
        cmbCustomer.Text)
        Me.ReportViewer1.RefreshReport()
End Sub