Thread: toolbars
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
ronbo ronbo is offline
external usenet poster
 
Posts: 36
Default toolbars

I have a workbook setup to open in the full screen mode
w/o any toolbars/command bars h/v bars etc. Everything
works good until I minimize the screen down to the
Windows taskbar. Upon maximizing, the toolbars (only) re-
appear . This only happens if the current workbook is
the only one open. If another workbook is open, Excel
2000 will default to the toolbars of the open workbook.
This is what I want. For a user to be able only to use
my settings when in my workbook and at all other times
default to the users settings.

I am opening w/
Private Sub Workbook_Activate()
Application.DisplayFullScreen = True
Application.CommandBars(1).Enabled = False

OR

Application.CommandBars.Visible = False

Thanks for any help.