Skip to main content
All docs
V23.2

Error List

  • 2 minutes to read

The Visual Studio’s Error List shows errors, warnings, and information messages that describe the issues in an application. If the application includes .NET Reporting Tools for Web, Mobile, and Desktop, the Error List also shows messages that help users create or enhance a report layout in the Visual Studio Report Designer.

The Error List displays the following messages:

  • Layout-related messages (for instance, in cases when report controls overlap each other or extend beyond the report’s printable area).
  • Messages about report creation (for instance, notifications about invalid property values or unreachable sources of content).
  • Messages that highlight issues in report scripts (for instance, errors in script syntax).
  • Messages related to report export (for example, in cases when an error occurs while a report is exported to PDF, XLSX, and other formats).

Invoke the Error List

Do one of the following to invoke the Error List:

  • Select the View | Error List item from Visual Studio’s menu.

  • Press the CTRL+W, E keyboard shortcut.

  • Click the bell icon in the status bar.

Filter Messages

Open a report in the Visual Studio Report Designer and select Current Document from the drop-down box on the left in the Error List to display only messages related to this report.

See the following topic for the list of messages that can appear in the Error List: Errors, Warnings, and Information Messages.

You can also implement and register the IErrorFilteringService service to filter messages in code:

class CustomErrorFilter : IErrorFilteringService {
    public IEnumerable<ErrorDataContract> Filter(IEnumerable<ErrorDataContract> errors) {
        return errors.Where(e => e.ErrorSource != DevExpress.XtraReports.Diagnostics.ErrorSource.ReportLayout);
    }
}