Adds additional valid script code to the report's scripting context. Using AddCode allows complete functions to be added to a report's script at run time. The added functions can be called from the report events in script.
'Declaration
Public Sub AddCode( _
ByVal As String _
)
Parameters
- script
- Script code written in the specified report scripting language.
public string addThisCode()
{
string sCode = "public string ShowACMessage()\"{return \"my Added Code\";}";
return sCode;
}
private void rptAddCode_ReportStart(object sender, System.EventArgs eArgs)
{
this.AddCode(addThisCode());
}
Public Function addThisCode() As String
Dim sCode As String = "public string ShowACMessage()""{return ""my Added Code"";}"
Return sCode
End Function
Private Sub rptAddCode_ReportStart(sender As Object, eArgs As System.EventArgs)
Me.AddCode(addThisCode())
End Sub