View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Bob Flanagan Bob Flanagan is offline
external usenet poster
 
Posts: 340
Default AutoLoad Custom Tool Bar

Jim, the easiest solution is to attach your toolbar to the workbook via
View, Toolbars, Customize. Then, when you close the workbook, use the
following macro that runs when a workbook is closed:

Sub Auto_Close()
commandbars("my toolbar name").delete
End Sub

You could hide the toolbar instead of deleting, but you would need to then
use a statement in the subrouting auto_open to unhide it. For example

commandbars("my toolbar name").visible = true or false

Robert Flanagan
Macro Systems
Delaware, U.S. 302-234-9857
http://www.add-ins.com
Productivity add-ins and downloadable books on VB macros for Excel



"Jim Carter" wrote in message
...
Can anyone help me? I am trying to get a custom toolbar to load when I

load
a specific workbook in Excel. The custom toolbar is designed and working,
but I want to autoload it when I load the specific workbook that it is

used
for. What are the VB code lines that will do this?

Also I would like to know how to close (exit) the tool bar when I close

the
specific workbook.

Thank you for your help.

Jim