R
Red
Hi Guys,
I've trying to create a new shortcut menu [PIC Menu] with controls that run
macros within the global.mpt. I've gotten as far as the menu and items
within but can't find any documentation that explains how to associate a
macro with each item. I'd appreciate any help as it's now beginning to drive
me mad!
Ta
Set mymenu = cbrMenuBar.Controls.Add(msoControlPopup, before:=9)
With mymenu
.Caption = "PIC &Menu"
End With
Set myItem1 = mymenu.Controls.Add(msoControlButton)
With myItem1
.Caption = "&Availability"
End With
I've trying to create a new shortcut menu [PIC Menu] with controls that run
macros within the global.mpt. I've gotten as far as the menu and items
within but can't find any documentation that explains how to associate a
macro with each item. I'd appreciate any help as it's now beginning to drive
me mad!
Ta
Set mymenu = cbrMenuBar.Controls.Add(msoControlPopup, before:=9)
With mymenu
.Caption = "PIC &Menu"
End With
Set myItem1 = mymenu.Controls.Add(msoControlButton)
With myItem1
.Caption = "&Availability"
End With