Execute 

Syntax:             void Execute ();

Return Value:    None.

Remarks:

Call this method to execute the SQL statement contained in the SQL pane of ELS-QB component.

Example:

This sample code illustates how programmatically execute the currently active query within ELS-QB component.

            void CELS_QBDemoView::ExecuteCurrentlyActiveQuery()

{

// This will check the current state of ELS-QB Control

if(m_QBCtrl.CanExecute())

// This will execute the query contained

// in the SQL pane of ELS-QB Control.

     m_QBCtrl.Execute();

}