ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Design.Win Assembly / GrapeCity.ActiveReports.Design Namespace / Designer Class / RunDataWizard Method
Example

In This Topic
    RunDataWizard Method
    In This Topic
    Opens the Data Source Dialog automatically when creating a new report.
    Syntax
    'Declaration
     
    Public Sub RunDataWizard() 
    public void RunDataWizard()
    Remarks
    This method triggers the Data Source Dialog to open, facilitating the process of connecting data sources to the new report.
    Example
    The following example demonstrates how to invoke the Data Wizard programmatically:
    private void RunDataWizardButtonClick(object sender, EventArgs e)
    {
    	_designer.RunDataWizard();
    }
    See Also