Add Menu Bar

PATTANAM

Board Regular
Joined
Sep 28, 2011
Messages
132
Hi THere,

Please help me

Have written the below code one of my excel sheet. when ever I opened this code workbook Command Bar will not showing in AddIns I need to again run this macro manually then I can see this in menu bar/Addins.

Could you please adive how to set up this automatically done in Exce VBA through?


Sub AddMenu()
On Error Resume Next
Set myMenubar = CommandBars.ActiveMenuBar
With myMenubar
With .Controls("Reconciliation")
.Delete
End With
End With
Set newMenu = myMenubar.Controls.Add(Type:=msoControlPopup, Temporary:=True)
newMenu.Caption = "Reconciliation"
Set Recons = newMenu.Controls.Add(Type:=msoControlButton, ID:=1)
With Recons
.Caption = "Validate"
.Style = msoButtonCaption
.OnAction = "Validate"
End With
End Sub
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Run the macro automatically when the workbook opens by putting this in the ThisWorkbook module:
Code:
Private Sub Workbook_Open()
    AddMenu
End Sub
 
Upvote 0

Forum statistics

Threads
1,216,075
Messages
6,128,657
Members
449,462
Latest member
Chislobog

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top