Is it possible to pass a Report.Parameter to a user function by way of an expression? This expression doesn't work:
= MyReportsLibrary.MyReport.myUserFunction(Parameters.parameter1,Parameters.parameter2)
The expression is attached to the value of a text-box.
parameter1 and parameter2 are strings.
This is the user function:
This is what gets populated into the text-box:
An error has occured while processing TextBox 'textBox1':
The expression contains undefined function call myUserFunction().
= MyReportsLibrary.MyReport.myUserFunction(Parameters.parameter1,Parameters.parameter2)
The expression is attached to the value of a text-box.
parameter1 and parameter2 are strings.
This is the user function:
public static string myUserFunction(string str1,string str2)
{
return str1 + "/" + str2;
}
This is what gets populated into the text-box:
An error has occured while processing TextBox 'textBox1':
The expression contains undefined function call myUserFunction().