ReportViewer.ReportError Event

 

Raised when an error occurs in the report.

Namespace:   Microsoft.Reporting.WinForms
Assembly:  Microsoft.ReportViewer.WinForms (in Microsoft.ReportViewer.WinForms.dll)

Syntax

public event ReportErrorEventHandler ReportError
public:
event ReportErrorEventHandler^ ReportError {
    void add(ReportErrorEventHandler^ value);
    void remove(ReportErrorEventHandler^ value);
}
member ReportError : IEvent<ReportErrorEventHandler,
    ReportErrorEventArgs>
Public Event ReportError As ReportErrorEventHandler

Remarks

This event is raised when an error occurs in the report. Information about this event is passed in a ReportErrorEventArgs object to the ReportErrorEventHandler delegate, which handles the event.

For more information about handling events, see NIB: Consuming Events.

See Also

ReportViewer Class
Microsoft.Reporting.WinForms Namespace

Return to top