Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How can I make it so if anyone opens a particular workbook all they will see
is the spreadsheet and none of the toolbars, tabs, etc. Everytime I try to do it I end up hiding the elements on anything in Excel I open, which is the exact opposite of what I want. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Jason
Start here http://www.rondebruin.nl/menuid.htm Run the code in this two events in the Thisworkbook module Private Sub Workbook_Activate() 'Your code to change Enabled to False 'Or the name of your macro End Sub Private Sub Workbook_Deactivate() 'Your code to change Enabled to True 'Or the name of your macro End Sub -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "Jason W" wrote in message ... How can I make it so if anyone opens a particular workbook all they will see is the spreadsheet and none of the toolbars, tabs, etc. Everytime I try to do it I end up hiding the elements on anything in Excel I open, which is the exact opposite of what I want. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Awesome! Just what I needed. Thanks a lot for the reply.
"Ron de Bruin" wrote: Hi Jason Start here http://www.rondebruin.nl/menuid.htm Run the code in this two events in the Thisworkbook module Private Sub Workbook_Activate() 'Your code to change Enabled to False 'Or the name of your macro End Sub Private Sub Workbook_Deactivate() 'Your code to change Enabled to True 'Or the name of your macro End Sub -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "Jason W" wrote in message ... How can I make it so if anyone opens a particular workbook all they will see is the spreadsheet and none of the toolbars, tabs, etc. Everytime I try to do it I end up hiding the elements on anything in Excel I open, which is the exact opposite of what I want. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
hide the menubars and toolbars | Excel Discussion (Misc queries) | |||
how do I hide data elements in pivot in excel 2003 ? | Excel Worksheet Functions | |||
hide toolbars, menu bar, etc | Excel Discussion (Misc queries) | |||
close (hide) toolbars | Excel Discussion (Misc queries) | |||
How do I hide and show all toolbars | Excel Worksheet Functions |