標題:
[發問]
查詢自訂工具列所指定的巨集
[打印本頁]
作者:
mygod0403
時間:
2013-5-7 10:23
標題:
查詢自訂工具列所指定的巨集
請問有沒有什麼方法可以快速查出
自訂工具列上的按鈕所對應的巨集
謝謝……
作者:
GBKEE
時間:
2013-5-7 15:50
回復
1#
mygod0403
Sub Ex()
Dim C As CommandBar, W As CommandBarControl, i As Integer
i = 1
For Each C In Application.CommandBars
If C.ID = 1 Then '自訂工具列的 ID = 1
Cells(i, "A") = C.Name
For Each W In C.Controls
Cells(i, "B") = W.OnAction
i = i + 1
Next
i = i + 1
End If
Next
End Sub
複製代碼
作者:
mygod0403
時間:
2013-5-9 10:16
回復
2#
GBKEE
感謝GBKEE大
我知道該怎麼做了…
謝謝
歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)