ActiveReports Developer 7
EnableScriptDebugging Property
See Also  Example
GrapeCity.ActiveReports.v7 Assembly > GrapeCity.ActiveReports Namespace > SectionReport Class : EnableScriptDebugging Property

Glossary Item Box

Allows to catch script exceptions in the debugger. The default value is False.

Syntax

Visual Basic (Declaration) 
Public Property EnableScriptDebugging As System.Boolean
C# 
public System.bool EnableScriptDebugging {get; set;}

Remarks

The EnableScriptDebugging property should be set to True before the script code compilation, which is similar to setting it before calling the Run method in ActiveReports.

If EnableScriptDebugging is set to True, then the compiled code is stored to a .dll file in the temporary folder.

Note: Visual Studio does not support script debugging at design time preview of a report.

Example

C#Copy Code
public void SectionReport_ReportStart()
{
    // the following line of script code attaches the debugger to the script
    System.Diagnostics.Debugger.Launch();
}
Visual BasicCopy Code
Public Sub SectionReport_ReportStart()
   'the following line of script code attaches the debugger to the script
   System.Diagnostics.Debugger.Launch()
End Sub

See Also