ActiveReports 6 Online Help
ReportExplorer Class
Members  Example 

The ReportExplorer class is the base class for the ReportExplorer control.
Object Model
ReportExplorer ClassActiveReport ClassDesigner Class
Syntax
'Declaration
 
Public Class ReportExplorer 
   Inherits System.Windows.Forms.UserControl
public class ReportExplorer : System.Windows.Forms.UserControl 
Remarks
The ReportExplorer control can be used in conjunction with the End-User Report Designer control to show the report sections and controls as well as a list of available data source fields based on the report's current database connection.
Example
private void Form1_Load(object sender, System.EventArgs e)
{
    this.reportExplorer1.ContentsVisible = true;
    this.reportExplorer1.FieldsVisible = true;
    this.reportExplorer1.ReportDesigner = this.designer1;
}
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Me.ReportExplorer1.ContentsVisible = True
    Me.ReportExplorer1.FieldsVisible = True
    Me.ReportExplorer1.ReportDesigner = Me.Designer1
End Sub
Inheritance Hierarchy

System.Object
   System.MarshalByRefObject
      System.ComponentModel.Component
         System.Windows.Forms.Control
            System.Windows.Forms.ScrollableControl
               System.Windows.Forms.ContainerControl
                  System.Windows.Forms.UserControl
                     DataDynamics.ActiveReports.Design.ReportExplorer

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

ReportExplorer Members
DataDynamics.ActiveReports.Design Namespace

Send Feedback