ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Hiding row and column headers, scroll bars (https://www.excelbanter.com/excel-programming/354649-hiding-row-column-headers-scroll-bars.html)

Anna B

Hiding row and column headers, scroll bars
 
When my command button takes me to my sheet, I want the sheet not to show any
row or column headers or scroll bars. I tried just going to the sheet and
unchecking the boxes under tools, but they come right back again when I leave
the sheet then return to it.

Is there a way to put code somewhere that tells those to be hidden when a
sheet is selected? Thanks




Tom Ogilvy

Hiding row and column headers, scroll bars
 
With ActiveWindow
.DisplayHeadings = False
.DisplayHorizontalScrollBar = False
.DisplayVerticalScrollBar = False
End With

However, this is not associated with the particular sheet that is selected.
If you go to another sheet and change them, they will be changed for all
sheets in that workbook. You will have to use the activate and possibly the
deactivate events to manage them it you only want it to be that way on one
sheet.

Chip Pearson's page on events
http://www.cpearson.com/excel/events.htm



--
Regards,
Tom Ogilvy




"Anna B" wrote in message
...
When my command button takes me to my sheet, I want the sheet not to show

any
row or column headers or scroll bars. I tried just going to the sheet and
unchecking the boxes under tools, but they come right back again when I

leave
the sheet then return to it.

Is there a way to put code somewhere that tells those to be hidden when a
sheet is selected? Thanks






Anna B

Hiding row and column headers, scroll bars
 
This is great! Thank you. Can I add a line that will take all the toolbars
away also? I realized that I don't want want those either. Thanks!

"Tom Ogilvy" wrote:

With ActiveWindow
.DisplayHeadings = False
.DisplayHorizontalScrollBar = False
.DisplayVerticalScrollBar = False
End With

However, this is not associated with the particular sheet that is selected.
If you go to another sheet and change them, they will be changed for all
sheets in that workbook. You will have to use the activate and possibly the
deactivate events to manage them it you only want it to be that way on one
sheet.

Chip Pearson's page on events
http://www.cpearson.com/excel/events.htm



--
Regards,
Tom Ogilvy




"Anna B" wrote in message
...
When my command button takes me to my sheet, I want the sheet not to show

any
row or column headers or scroll bars. I tried just going to the sheet and
unchecking the boxes under tools, but they come right back again when I

leave
the sheet then return to it.

Is there a way to put code somewhere that tells those to be hidden when a
sheet is selected? Thanks








All times are GMT +1. The time now is 10:57 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com