New menu loaded only with specific workbook

ktab

Well-known Member
Joined
Apr 21, 2005
Messages
1,297
Hello,

How can i use a new menu only for one workbook (that i made that for) and not loaded at any other workbook opened? Is it possible?

Than you
Kostas
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Good afternoon ktab

The best method would be to use code to build your toolbar "on the fly", using code to generate the toolbar on opening the spreadsheet and delete it on closing.

http://www.mrexcel.com/board2/viewtopic.php?t=229048
http://www.mrexcel.com/board2/viewtopic.php?t=217876

However, you could use something like this :

Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Application.CommandBars("Custom 1").Visible = False
End Sub

Private Sub Workbook_Open()
Application.CommandBars("Custom 1").Visible = True
End Sub

This will make the toolbar visible on opening and hide it on closing and assumes the toolbar is called "Custom 1".

HTH

DominicB
 
Upvote 0
To be honest the first solution is what i was thinking about, since i want this menu to exist even in other computer than mine . So I'll take a look at your links.

Thank you very much for the help
 
Upvote 0

Forum statistics

Threads
1,213,482
Messages
6,113,916
Members
448,533
Latest member
thietbibeboiwasaco

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