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 VB pseudo code illustrates a way of possible usage of this feature of ELS-QB component:

      Private Sub ELS_QBCtrl_PostExecute()

         Dim nCount

         nCount = ELS_QBCtrl.GetRecCount()

         frmMDI.stBarMDI.Panels.Item(1).Text = "Total :" & nCount & " records"

      End Sub