Troy,
Are you talking about the Visual Studio Tools For Office? You
create menu items there in very much the same way as you do in
VBA. For example,
Friend MenuCtrl As Office.CommandBarControl ' this goes on the
Tools menu
Private WithEvents MenuItem1 As Office.CommandBarButton 'this
goes under the control
Private WithEvents MenuItem2 As Office.CommandBarButton 'this
goes under the control
Try
MenuCtrl =
Me.ThisApplication.CommandBars.FindControl(ID:=cTOOLS_MENU).Contr
ols.Add _
(Type:=Office.MsoControlType.msoControlPopup,
temporary:=True)
MenuCtrl.Tag = cMENU_TAG
MenuCtrl.Caption = "Office NET Tools"
MenuItem1 = MenuCtrl.Controls.Add()
MenuItem1.Caption = "1. Show Modal Form"
MenuItem1.Tag = cMENU_TAG
MenuItem2 = MenuCtrl.Controls.Add()
MenuItem2.Caption = "2. Show Modeless Form"
MenuItem2.Tag = cMENU_TAG
Catch ex As Exception
MessageBox.Show ("Error creating menu items: " & vbCrLf & _
ex.Message)
End Try
You can custom the right-click menu by adding controls to the
"Cell" menu.
--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com