UpdatePane 

Syntax

object. UpdatePane  nPane

nPane -  Specifies the ELS-QB component’s pane to be toggled and may be any of the following values:

QB_RELATION_PANE              = 1

QB_COLUMNS_PANE              = 2

QB_SQL_PANE                       = 3

QB_CONNECTION_PANE        = 4

QB_DBBROWSER_PANE        = 5

Description

Call this method to to update or refresh the specified pane of ELS-QB component.

Remarks

UpdatePane method returns True if the specified pane is updated successfully and False otherwise.

Example

This sample code shows how programmatically refresh the specified  pane within ELS-QB control.

if ELS_QBCtrl.IsPaneVisible(QB_RELATION_PANE) Then

ELS_QBCtrl.UpdatePane QB_RELATION_PANE

End If