ShowToolButton 

Syntax

object.ShowToolbarButton  nButton,  bShow nButton

Specifies the ELS-QB component’s toolbar button combination and may be any of the following values:

QB_CONNPANE_BTN   = 1

QB_DVWPANE_BTN     = 2

QB_RELPANE_BTN      = 3

QB_COLPANE_BTN      = 4

QB_SQLPANE_BTN      = 5

QB_CHKSQL_BTN        = 6

QB_EXECUTE_BTN       = 7

QB_STOP_BTN             = 8

QB_ALL_BTNS              = 9

bShow   Specifies the further visibility of the selected button combination (0 or 1).

Description

Call this method to show / hide the specific button combination in the ELS-QB control’s toolbar (the toolbar located on left side of the Connection pane). Note that the QB_ALL_BTNS combination will show / hide the toolbar itself.This method may be used to hide or deactivate a certain functionality of the ELS-QB for either security or simplification purpose. For example, the developer may want to hide the Connection pane and the toolbar button corresponding to the toggling of show/hide of this pane (e.g. QB_CONNPANE_BTN). In this way the end-user may not have access to the Connection pane of the ELS-QB control.

Remarks

ShowToolbarButton method returns True if the operation was successful, otherwise it returns False.

Note: If this method is never called, all toolbar buttons are shown by default.

Example

This sample code shows how to allow the end user to toggle in view a specifiedbutton of ELS-QB control’s toolbar.

gbRelBtnVis = True

' Some command handler

Private Sub itmCmdToggleRelPaneBtn_Click()

    If ELS_QBCtrl.ShowToolButton(QB_RELPANE_BTN, Not gbRelBtnVis) Then

 gbRelBtnVis = Not gbRelBtnVis

    End If

End Sub