View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Mike K Mike K is offline
external usenet poster
 
Posts: 104
Default Toolbar not hiding

Oh Wise Ones,
I have a workbook that needs a lot of screen area.
It was loading the "Web" toolbar when it opened. I have added code to
close/hide the toolbar but it is not working. What am I doing wrong?

Code in ThisWorkbook:

Private Sub Workbook_Open()
Application.CommandBars("ActiveFactory").Visible = False
Application.CommandBars("Web").Visible = False
End Sub


Thanks,
Mike