DoCmd.ShowToolbar Method (Access)
The ShowToolbar method carries out the ShowToolbar action in Visual Basic.
Syntax
식 .ShowToolbar(ToolbarName, Show)
식 A variable that represents a DoCmd object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
ToolbarName |
필수 |
Variant |
A string expression that's the valid name of a custom toolbar you've created. If you run Visual Basic code containing the ShowToolbar method in a library database, Microsoft Access looks for the toolbar with this name first in the library database, then in the current database. |
Show |
선택 |
AcShowToolbar |
A AcShowToolbar constant that specifies whether to display or hide the toolbar and in which views to display or hide it. The default value is acToolbarYes. |
Remarks
You can use the ShowToolbar method to display or hide a custom toolbar.
If you want to show a particular toolbar on just one form or report, you can set the OnActivate property of the form or report to the name of a macro that contains a ShowToolbar action to show the toolbar. Then set the OnDeactivate property of the form or report to the name of a macro that contains a ShowToolbar action to hide the toolbar.