ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.QueryDesigner Assembly / GrapeCity.ActiveReports.QueryDesigner.Implementation Namespace / QueryDesignerDialog Class
Members Example

In This Topic
    QueryDesignerDialog Class
    In This Topic
    Represents a modal dialog for designing and editing SQL queries.
    Object Model
    QueryDesignerDialog Class
    Syntax
    'Declaration
     
    Public Class QueryDesignerDialog 
    public class QueryDesignerDialog 
    Remarks
    The QueryDesignerDialog class provides a user interface for creating and modifying SQL queries. It allows users to specify the query text and define query parameters.
    Example
    // Get a IQueryDesignerHost
    IQueryDesignerHost host = new GetQueryDesignerHost();
    					
    // Create a new instance of QueryDesignerDialog
    QueryDesignerDialog dialog = new QueryDesignerDialog(host);
    if (dialog.ShowDialog(owner, true) == DialogResult.OK)
    {
    	string query = dialog.Query;
    	// Execute the other actions
    }
    Inheritance Hierarchy

    System.Object
       GrapeCity.ActiveReports.QueryDesigner.Implementation.QueryDesignerDialog

    See Also