ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 1495|回复: 5

[求助] word文档自定义右键问题

[复制链接]

TA的精华主题

TA的得分主题

发表于 2013-7-19 15:21 | 显示全部楼层 |阅读模式
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册

  1. Dim NewMenu1 As CommandBarPopup
  2. Set NewMenu1 = Application.CommandBars("Text").Controls.Add(Type:=msoControlPopup, Before:=1)
  3. with NewMenu1
  4.     .caption = "MyMenu"
  5.     .visible = true
  6.     with .controls.add(type:=msoControlButton)
  7.         .caption = "Menu1"
  8.         .OnAction = "MySub1"
  9.     end with
  10.     with .controls.add(type:=msoControlButton)
  11.         .caption = "Menu2"
  12.         .OnAction = "MySub2"
  13.     end with
  14. end with
复制代码
这样建立的右键菜单只对文本有效,不能对文档中所有对象有效。
比如如果是列表,就要重新再定义一个NewMenu2 = Application.CommandBars("Lists").Controls.Add(Type:=msoControlPopup, Before:=1)
若果是嵌入式图片,要重新定义一个NewMenu3 = Application.CommandBars("Inline Piture").Controls.Add(Type:=msoControlPopup, Before:=1)

有没有只定义一个CommandBarPopup,所文档中的所有对象都有效?

TA的精华主题

TA的得分主题

 楼主| 发表于 2013-7-22 16:54 | 显示全部楼层
http://club.excelhome.net/forum. ... ead&tid=1038554
看到Excel里有这样的用法,请问谁知道Word有木有这样的简化方法

TA的精华主题

TA的得分主题

 楼主| 发表于 2013-7-22 16:56 | 显示全部楼层
  1.     Set NewButton1 = Application.CommandBars("Text").Controls.Add(Type:=msoControlPopup, Before:=1)
  2.     Set NewButton2 = Application.CommandBars("Whole Table").Controls.Add(Type:=msoControlPopup, Before:=1)
  3.     Set NewButton3 = Application.CommandBars("Inline Picture").Controls.Add(Type:=msoControlPopup, Before:=1)
  4.     Set NewButton4 = Application.CommandBars("Floating Picture").Controls.Add(Type:=msoControlPopup, Before:=1)
  5.    
  6. With NewButton1
  7.         .Caption = "模板菜单"    '命令名称
  8.         .Visible = True          '可见
  9.         With .Controls.Add(Type:=msoControlButton)
  10.             .Caption = "域与题注"
  11.             .OnAction = "菜单"
  12.             .Visible = True
  13.         End With
  14.         With .Controls.Add(Type:=msoControlButton)
  15.             .Caption = "表格设置"
  16.             .OnAction = "菜单"
  17.             .Visible = True
  18.         End With
  19.         With .Controls.Add(Type:=msoControlButton)
  20.             .Caption = "图片设置"
  21.             .OnAction = "菜单"
  22.             .Visible = True
  23.         End With
  24.         With .Controls.Add(Type:=msoControlButton)
  25.             .Caption = "其他设置"
  26.             .OnAction = "菜单"
  27.             .Visible = True
  28.         End With
  29.         With .Controls.Add(Type:=msoControlButton)
  30.             .Caption = "更多功能"
  31.             .OnAction = "菜单"
  32.             .Visible = True
  33.         End With
  34. End With
  35. With NewButton2
  36.      '完全一样的代码块
  37. End With
  38. With NewButton3
  39.      '完全一样的代码块
  40. End With
  41. With NewButton4
  42.      '完全一样的代码块
  43. End With

  44. '难道不应该想个办法这样操作吗?
  45. arr = Array("Text", "Whole Table", "Inline Picture", "Floating Picture")
  46. For i = LBound(arr) To UBound(arr)
  47.     Set "NewButton" & i + 1 = Application.CommandBars(arr(i)).Controls.Add(Type:=msoControlButton, Before:=1)
  48.     With "NewButton" & i + 1
  49.         '完全一样的代码块
  50.     End With
  51. Next i
复制代码

TA的精华主题

TA的得分主题

发表于 2013-7-22 19:52 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
这个应该可以吧:
Sub 批量添加右键菜单()
On Error Resume Next
    Dim arr()
    arr = Array("Text", "Whole Table", "Inline Picture", "Floating Picture")
    For Each A In arr
    Application.CommandBars(A).Controls("模板菜单").Delete
        Set NewButton = Application.CommandBars(A).Controls.Add(Type:=msoControlPopup, Before:=1)
        With NewButton
            .Caption = "模板菜单"    '命令名称
            .Visible = True          '可见
            With .Controls.Add(Type:=msoControlButton)
                .Caption = "域与题注"
                .OnAction = "菜单"
                .Visible = True
            End With
            With .Controls.Add(Type:=msoControlButton)
                .Caption = "表格设置"
                .OnAction = "菜单"
                .Visible = True
            End With
            With .Controls.Add(Type:=msoControlButton)
                .Caption = "图片设置"
                .OnAction = "菜单"
                .Visible = True
            End With
            With .Controls.Add(Type:=msoControlButton)
                .Caption = "其他设置"
                .OnAction = "菜单"
                .Visible = True
            End With
            With .Controls.Add(Type:=msoControlButton)
                .Caption = "更多功能"
                .OnAction = "菜单"
                .Visible = True
            End With
        End With
    Next
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2013-7-23 17:44 | 显示全部楼层
zhanglei1371 发表于 2013-7-22 19:52
这个应该可以吧:
Sub 批量添加右键菜单()
On Error Resume Next

感谢,我一直以为NewButtuon这个对象不能重复使用。。。

TA的精华主题

TA的得分主题

发表于 2018-5-10 16:07 | 显示全部楼层
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2025-1-12 01:47 , Processed in 0.029813 second(s), 9 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表