Stop 

Syntax:             void Stop ();

Return Value:    None.

Remarks:

Call this method to stop any pending SQL statement execution process that is running within ELS-QB component.

Example:

This sample code illustates how programmatically stop the pending query execution within ELS-QB component.

            void CELS_QBDemoView::StopQueryExecution()

{

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

if(m_QBCtrl.IsRunning())

// This will stop execution of the query contained

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

     m_QBCtrl.Stop();

}