Report Script: Get object and value of a parameter: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

21 February 2024

  • curprev 09:4909:49, 21 February 2024DanielY talk contribs 670 bytes +670 Created page with " <syntaxhighlight lang="csharp"> private AutoCount.Report.BaseReport __report; private void Report_BeforePrint(object sender, System.ComponentModel.CancelEventArgs e) { __report = Report as AutoCount.Report.BaseReport; //Name of the parameter is "parameter1" //__report.Parameters is Parameters.ParameterCollection object param1Value = __report.Parameters["parameter1"].Value; if (param1Value != null) { label22.Text = param1Value..."