在Excel 2003中,我可以访问集合Application.CommandBars
以使用VBA创建自定义工具栏。 Outlook 2003中是否存在等效内容?
我正在尝试更改客户工具栏按钮上的标签。将来我想从头开始创建工具栏。
干杯, 戴夫
- 关于Fedang的Trindaz #Outlook-vbas
答案 0 :(得分:-1)
结束自己解决这个问题。如果你有兴趣,这是代码:
Dim expExplorer As Outlook.Explorer
Dim cmbCommandBar As CommandBar
Dim ctlBarControl As CommandBarControl
For Each expExplorer In Outlook.Explorers
For Each cmbCommandBar In expExplorer.CommandBars
If cmbCommandBar.Name = "name-of-toolbar" Then
For Each ctlBarControl In cmbCommandBar.Controls
If ctlBarControl.Caption = "caption-i-want-to-change" Then
ctlBarControl.Caption = "new-caption-text"
End If
Next ctlBarControl
End If
Next cmbCommandBar
Next expExplorer