To setup parameters for a SubReport click the ellipses of the Parameters property. Each parameter consists of a Parameter Name and Parameter Value.
Click the New button to add a parameter. Assuming you have assigned the ReportSource property the Parameter Name drop down list will contain the names of parameters defined in the report. Select a Parameter Name from the combobox to set the target for this parameter. Parameter Value combobox allows you to enter value directly, create an "<Expression>" or a "<New Report Parameter>".
![]() |
Parameters | Obsolete. |
{
reportTable.DataSource = Data;
ReportProcessor
reportProcessor = new ReportProcessor();
return new MemoryStream(
reportProcessor.RenderReport(reportRequest.Format.ToString().ToUpper(),
this, new Hashtable())
.DocumentBytes);
}
""An error has occurred while processing Report 'Report':
Invalid URI: The format of the URI could not be determined.""
Also it is not firing reportTable_ItemDataBinding event.reportTable.ItemDataBinding +=
new EventHandler(reportTable_ItemDataBinding);
Please help. If you need specific more detail, please let me know.
[DataObjectMethod(DataObjectMethodType.Select)]
public
ReportOrderDetail GetReportOrderDetail()
{.....