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

QueryDesignerDialog Class
Represents a modal dialog for designing and editing SQL queries.
Object Model
QueryDesignerDialog Class
Syntax
'Declaration
 
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