Thread: Lost Toolbar
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
DM Unseen DM Unseen is offline
external usenet poster
 
Posts: 233
Default Lost Toolbar

Anthony

pls check if your toolbar is still available (but hidden) by executing
in the VBA immediate window:

Application.commandbars("Mytoolbaraname").Enabled = true
Application.commandbars("Mytoolbaraname").Visible= true

If that does not work your toolbar might be in "limbo" or just plain
lost.

DM Unseen