ActiveReports 6 Online Help
EnableScriptDebugging Property
Example 

Allows to catch script exceptions in the debugger. The default value is False.
Syntax
'Declaration
 
Public Property EnableScriptDebugging As Boolean
public 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 6.

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
public void ActiveReport_ReportStart()
{
    // the following line of script code attaches the debugger to the script
    System.Diagnostics.Debugger.Launch();
}
Public Sub ActiveReport_ReportStart()
   'the following line of script code attaches the debugger to the script
   System.Diagnostics.Debugger.Launch()
End Sub
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ActiveReport Class
ActiveReport Members

Send Feedback