用VBA代码处理菜单和工具栏之三
时 间:2004-06-21 00:00:00
作 者:郑家龙 ID:90 城市:上海
摘 要:用VBA代码处理菜单和工具栏之三
正 文:
隐藏和显示菜单和工具栏
可以用CommandBar对象的Visible属性来隐藏和显示工具栏,当你显示一个工具栏的时候,你可以用Position属性来指定工具栏应该显示在屏幕的哪一个地方,例如,下面的一段程序需要三个参数,strCBarName表示要显示或隐藏的工具栏名称,blnVisible表示是隐藏还是要显示,可选参数lngPosition表示工具栏显示的位置,默认是显示在access窗口的上方,也可以显示在左、右或者是下方。
Function CBToolbarShow(strCBarName As String, _
blnVisible As Boolean, _
Optional lngPosition As Long = msoBarTop) As Boolean
' This procedure displays or hides the command bar specified in the
' strCBarName argument according to the value of the blnVisible
' argument. The optional lngPosition argument specifies where the
' command bar will appear on the screen.
Dim cbrCmdBar As CommandBar
On Error GoTo CBToolbarShow_Err
Set cbrCmdBar = Application.CommandBars(strCBarName)
' Show only toolbars.
If cbrCmdBar.Type > msoBarTypeNormal Then
CBToolbarShow = False
Exit Function
End If
' If Position argument is invalid, set to the default
' msoBarTop position.
If lngPosition < msoBarLeft Or lngPosition > msoBarMenuBar Then
lngPosition = msoBarTop
End If
With cbrCmdBar
.Visible = blnVisible
.Position = lngPosition
End With
CBToolbarShow = True
CBToolbarShow_End:
Exit Function
CBToolbarShow_Err:
CBToolbarShow = False
Resume CBToolbarShow_End
End Function
要显示一个菜单栏,可以参考以下的一个函数来实现:
Function CBMenuBarShow(strCBarName As String) As Boolean
' 本函数可以显示一个指定的菜单栏,如果指定的菜单栏不存在或者是非法的名称,将返回FALSE
Dim cbrCBarMenu As CommandBar
On Error GoTo CBMenuBarShow_Err
Set cbrCBarMenu = Application.CommandBars(strCBarName)
If cbrCBarMenu.Type <> msoBarTypeMenuBar Then
CBMenuBarShow = False
Exit Function
End If
With cbrCBarMenu
.Visible = True
End With
CBMenuBarShow = True
CBMenuBarShow_End:
Exit Function
CBMenuBarShow_Err:
CBMenuBarShow = False
Resume CBMenuBarShow_End
End Function
调用方法:? CBMenuBarShow ("Menu Bar")’显示已被隐藏的主菜单。
Access软件网官方交流QQ群 (群号:54525238) Access源码网店
常见问答:
技术分类:
源码示例
- 【源码QQ群号19834647...(12.17)
- 统计当月之前(不含当月)的记录...(03.11)
- 【Access Inputbo...(03.03)
- 按回车键后光标移动到下一条记录...(02.12)
- 【Access Dsum示例】...(02.07)
- Access对子窗体的数据进行...(02.05)
- 【Access高效办公】上月累...(01.09)
- 【Access高效办公】上月累...(01.06)
- 【Access Inputbo...(12.23)
- 【Access Dsum示例】...(12.16)

学习心得
最新文章
- 仓库管理实战课程(9)-开发往来单...(04.02)
- 仓库管理实战课程(8)-商品信息功...(04.01)
- 仓库管理实战课程(7)-链接表(03.31)
- 仓库管理实战课程(6)-创建查询(03.29)
- 仓库管理实战课程(5)-字段属性(03.27)
- 设备装配出入库管理系统;基于Acc...(03.24)
- 仓库管理实战课程(4)-建表操作(03.22)
- 仓库管理实战课程(3)-需求设计说...(03.19)
- 仓库管理实战课程(2)-软件背景和...(03.18)
- 仓库管理实战课程(1)-讲师介绍(03.16)