ActiveReports6 Assembly > DataDynamics.ActiveReports Namespace > ActiveReport Class : Parameters Property |
'Declaration Public ReadOnly Property Parameters As ParameterCollection
public ParameterCollection Parameters {get;}
The parameters collection is automatically populated when the report is started. If parameters are specified in the report's DataSource, they will be added to the collection.
For example, setting your RecordSource to the following SQL adds "Order Date" and "Order ID" to the parameters collection.
"SELECT * FROM orders WHERE OrderDate >= #<%Order Date|Enter Order date|1/1/1995%># AND OrderID > <OrderID|Order ID>"
You can set the parameter values before the report starts or allow ActiveReports to collect the values from the user at run time.
Note: Depending on your data source, you may need to add pound signs around the parameter syntax for dates (as in the "Order Date" example above) or apostrophes around the parameter syntax for strings, i.e. "SELECT * FROM Customers WHERE CustomerID = '<CustomerID>'"
rptDrillDown1 rpt2 = New rptDrillDown1(); frmViewDrillDown1 frm2 = New frmViewDrillDown1(); rpt2.Parameters["customerID"].Value = e.HyperLink.ToString(); rpt2.Run(); frm2.viewer1.Document = rpt2.Document; frm2.ShowDialog(this);
Dim rpt2 As New rptDrillDown1() Dim frm2 As New frmViewDrillDown1() rpt2.Parameters("customerID").Value = e.HyperLink.ToString Console.WriteLine(rpt2.ds.SQL.ToString) rpt2.Run() frm2.Viewer1.Document = rpt2.Document frm2.ShowDialog(Me)
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2