单击 MSOffice 应用程序中的按钮即可打开工具栏

发布于 2024-12-09 08:10:17 字数 85 浏览 0 评论 0原文

我想要的是通过 Office 应用程序中的标准自定义在工具栏上创建一个按钮,“启用/调用/打开另一个工具栏”? Access 2003 中仍然存在这种情况。

What i want is to create a button on the toolbar via the standard Customize … in Office apps, that ‘enables / calls / opens another toolbar’? This is still in Access 2003.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟雨扶苏 2024-12-16 08:10:17

如果没有 VBA,您就无法做到这一点(但是当您以这种方式标记您的问题时,这可能就是您正在寻找的)。

首先,创建一个显示工具栏的宏:

Sub RestoreToolbars()
    On Error Resume Next
    Application.CommandBars("The toolbar you want to display").Enabled = True
    On Error GoTo 0
End Sub

源在 ozgrid 上

然后,创建一个将调用该宏的自定义按钮:

添加或删除工具栏按钮 (#addicon)

自定义工具栏是通过自定义进行的,有多种方法可以进入自定义:

  • 查看-->工具栏 -->自定义,--或来自--
  • 工具-->自定义,--或从
  • --右键单击工具栏区域-->自定义

向工具栏添加按钮,请选择“自定义”下的选项之一,将按钮移动到您想要在其中看到它的工具栏。单击“自定义”中的按钮,然后查看“自定义”的左下角其描述窗口。

添加或删除工具栏按钮

  1. 自定义(工具 --> 自定义)
  2. 单击“命令”选项卡
  3. 要添加按钮,请单击“类别”中的类别名称
    框,然后将按钮或项目从按钮区域拖到
    显示的工具栏。

要删除按钮,请将其拖离工具栏即可删除。
可以将其移动到另一个工具栏,而不是删除,但将其拖动到工作表区域会删除该按钮。

如果在自定义期间将按钮从工具栏拖出,则只能从现有工具栏或内置图案工具栏恢复。正是由于这个原因,您应该将原件存储在隐藏的工具栏中。

右键单击工具栏图标可分配描述,然后
分配一个宏。

在此处输入图像描述

来源 - 添加或删除按钮

You can't do that without VBA (but as you tagged your question this way, this is probably what your are looking for).

First, create a macro that displays your toolbar:

Sub RestoreToolbars()
    On Error Resume Next
    Application.CommandBars("The toolbar you want to display").Enabled = True
    On Error GoTo 0
End Sub

Source on ozgrid

Then, create a custom button that will call that macro:

Add or delete a toolbar button (#addicon)

Customizing your toolbars is from customize, and there are several ways of getting into customize:

  • View --> Toolbars --> Customize, --or from--
  • Tools --> Customize, --or from--
  • right-click on toolbars area --> Customize

To add a button to a toolbar select one of the choices under customize, move the button to the toolbar you want to see it in. Click on an button in customize and look in lower left corner of customize window for it's description.

Add or delete a toolbar button

  1. Customize (Tools --> Customize)
  2. Click on the Commands tab
  3. To add a button, click the name of the category in the Categories
    box, and then drag the button or item from the Buttons area to the
    displayed toolbar.

To delete a button, drag it off the toolbar to delete.
It can be moved to another toolbar, instead of deleting, but dragging it to the worksheet area will delete the button.

If a button is dragged off a toolbar during customize it can only be restored from an existing toolbar or the builtin pattern toolbars. It is for this reason that you should store originals in a hidden toolbar.

Right-click on the toolbar icon to assign a description, and to
assign a macro.

enter image description here

Source - Add or delete a button

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文