Display Web Report with Parameter

edited 7:59AM in FastReport .NET
I am trying to create a Web Report that accepts a parameter from my code but no matter what I do it ignores it and I cannot find any documentation on WebReport to help.
I have a basic frx file with a Parameter String and this has been set in the Filter property of the report.

Here is my code which firstly creates my DataSource and places it on the form. It then creates a WebReport and places this on the form.
Am I missing something simple ?

Gus
Dim uSQLDataSource As New SqlDataSource
        uSQLDataSource.ID = "SqlDataSourceVoucher"
        uSQLDataSource.ConnectionString = "Provider=SQLOLEDB;Data Source=XXXXX;Persist Security Info=True;Password=XXXX;User ID=XXXX;Initial Catalog=XXXX"
        uSQLDataSource.ProviderName = "System.Data.OleDb"
        uSQLDataSource.SelectCommand = "Customer_GetVoucherDetails"
        uSQLDataSource.SelectCommandType = SqlDataSourceCommandType.StoredProcedure
        form1.Controls.Add(uSQLDataSource)

        Dim uWebReport As New FastReport.Web.WebReport
        uWebReport.ID = "Voucher"
        uWebReport.ReportFile = "/App_Data/NewVoucher.frx"
        uWebReport.ReportDataSources = "SqlDataSourceVoucher"
        uWebReport.Report.SetParameterValue("VOrderID", 8)
        form1.Controls.Add(uWebReport)

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.