How do I pass a value from my VB.Net code to a parameter of the GetData method of a TableAdapter in a DataSet in a rdlc?
I have a report (rdlc). The report has a table whose DataSetName property is set to a datable of a TableAdapter that has a GetData method that takes a parameter (GetData(@param1)). How do I pass a value to that @param1?
Thanks.