Home > Enterprise >  Where is the "Add-Ins" custom menu stored in an office VBA application?
Where is the "Add-Ins" custom menu stored in an office VBA application?

Time:01-17

I am working on a legacy MS Access 2010 database project, and I cannot find where I can review and edit the custom "Add-Ins" toolbar. This is the custom toolbar:

Access options

Navigation Pane

CodePudding user response:

I finally found a function inside a module which is creating the menus. It seems that in this case, the menus are manually created/updated running that function manually, so I had to go to view code (Alt F11), place the cursor inside the function and hit F5 to execute.

One sample of code how to create/edit custom menus with this technique can be found here, but in the new versions of office VBA can be done like this.

  •  Tags:  
  • Related