UpdatePane 

Syntax:             BOOL UpdatePane(long nPane);

Return Value:    TRUE if the specified pane is updated successfully, FALSE otherwise.

Parameters:

                        nPane       Specifies the ELS-QB component’s pane to update. May have one of the following values:

                                                QB_RELATION_PANE               = 1

                        QB_COLUMNS_PANE               = 2

                        QB_SQL_PANE                        = 3

                        QB_CONNECTION_PANE          = 4

                        QB_DBBROWSER_PANE         = 5

Remarks:

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

Example:

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

.............................

if(m_QBCtrl.IsPaneVisible(QB_RELATION_PANE))

m_QBCtrl.UpdatePane(QB_RELATION_PANE);

.............................