ToolbarsVisible

Bit flags for each toolbar to determine whether a toolbar is visible. The end user can show/hide the toolbars from the toolbar's context menu.

Syntax

object.ToolbarsVisible [= value]

The ToolbarsVisible property syntax has the following parts:

Part Description
object A valid ARDesigner object
value A ToolbarIdentifiers setting.

Settings

The settings for value are:

Setting Description
ddTBMenu 1 - Main menu toolbar.
ddTBToolBox 2 - Controls toolbox.
ddTBStandard 4 - Standard toolbar.
ddTBAlignment 8 - Alignment toolbar.
ddTBFormat 16 - Format toolbar.
ddTBExplorer 32 - Report explorer toolbar.
ddTBFields 64 - Fields list toolbar.
ddTBPropertyToolbox 128 - Property toolbox.

Data Type

ToolbarIdentifiers

Example

Private Sub Form_Load()
'Disable and hide the built-in toolbars
ARDesigner1.ToolbarsAccessible = 0
ARDesigner1.ToolbarsVisible = 0
End Sub