PostExecute

PostExecute event of ELS-QB component is fired when the user initiates  the execution of a query within ELS-QB Component and it is the last thing that occurs in the internal query processing chain ELS-QB component. It occurs after ELS- component executes a query allowing a way to provide a custom event handlig behavior.

The following VC++ pseudo code illustrates a way of possible usage of this feature of ELS-QB component:

             void CELS_QBDemoView::OnPostExecuteElsqbctrl()

             {

                 CString strMsg;

                 strMsg.Format(_T("Total: %l records"), m_QBCtrl.GetRecCount());

                 AfxMessageBox(strMsg);

             }