Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Folks,
Although very helpful when you need it, it can be a big neusance. Is there a way to disable or remove from the current worksheet in 2010? Thanks! -Steve |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hi Steve,
Application.CommandBars("Ply").Enabled = False -- isabelle Le 2011-12-01 23:38, SS a écrit : Folks, Although very helpful when you need it, it can be a big neusance. Is there a way to disable or remove from the current worksheet in 2010? Thanks! -Steve |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
isabelle pretended :
hi Steve, Application.CommandBars("Ply").Enabled = False Isabelle, I believe Steve is referring to the InsertSheet icon on the right side of tab strip, NOT the popup menu. -- Garry Free usenet access at http://www.eternal-september.org ClassicVB Users Regroup! comp.lang.basic.visual.misc |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Dec 2, 12:16*am, GS wrote:
isabelle pretended : hi Steve, Application.CommandBars("Ply").Enabled = False Isabelle, I believe Steve is referring to the InsertSheet icon on the right side of tab strip, NOT the popup menu. -- Garry Free usenet access athttp://www.eternal-september.org ClassicVB Users Regroup! comp.lang.basic.visual.misc That is correct about the icon, not the menu option; but that is interesting... I was able to find that protecting the entire workbook will also disable that 'thing'. I have never gone to that extreme with my files, but i have tried it now, and seems to be working ok. Is there any pitfalls to protecting the entire workbook like that? Otherwise, i could use your code to go on file open, or something similar. Thanks for the help! Much appreciated! -Steve |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Dec 2, 12:16*am, GS wrote:
isabelle pretended : hi Steve, Application.CommandBars("Ply").Enabled = False Isabelle, I believe Steve is referring to the InsertSheet icon on the right side of tab strip, NOT the popup menu. -- Garry Free usenet access athttp://www.eternal-september.org ClassicVB Users Regroup! comp.lang.basic.visual.misc Another off the wall question.... What are the possiblilities of changing the checkmark in a checkbox to green instead of boring black :-) Thanks!! Steve |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
SS pretended :
On Dec 2, 12:16*am, GS wrote: isabelle pretended : hi Steve, Application.CommandBars("Ply").Enabled = False Isabelle, I believe Steve is referring to the InsertSheet icon on the right side of tab strip, NOT the popup menu. -- Garry Free usenet access athttp://www.eternal-september.org ClassicVB Users Regroup! comp.lang.basic.visual.misc Another off the wall question.... What are the possiblilities of changing the checkmark in a checkbox to green instead of boring black :-) Thanks!! Steve Check out the 'ForeColor' property -- Garry Free usenet access at http://www.eternal-september.org ClassicVB Users Regroup! comp.lang.basic.visual.misc |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On 2 Des, 05:38, SS wrote:
Folks, Although very helpful when you need it, it can be a big neusance. Is there a way to disable or remove from the current worksheet in 2010? Thanks! -Steve - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Hi, Steve. I don't think it is possible to disable the worksheet Tabs and having them visible at the same time without protecting the whole workbook. However, if you mean Hiding the worksheet tabs at the bottom of the worksheets, you can use this method: Sub HideWBtabs() ActiveWindow.DisplayWorkbookTabs = False End Sub To get them visible again, change the word False with True and run the code again.. Or manually ... Go to the File Tab to the very Left on the Ribbon, go to Advanced and uncheck Show WorksheetTabs. Hope that gave you some extra ideas... Regards Jan T. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Order of the Worksheet tabs across the bottom of the screen | Excel Worksheet Functions | |||
Clicking into refedit changes screen to bottom of worksheet | Excel Programming | |||
disable Insert Worksheet | Excel Worksheet Functions | |||
How to disable the insert worksheet(Shift+F11) icon in 2007 using | Excel Programming | |||
The bottom of my spreadsheet is off the screen | Excel Discussion (Misc queries) |