Main Menu

Hide page tabs

Started by Tom J, June 06, 2020, 12:14:58 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Tom J

How do I hide the Page Tab Bar at the bottom of the screen? I'd like to reclaim the screen area used by the bar to increase my drawing area. I found that I can add the PAGE command to the Quick Access Toolbar and use that instead.

Paul Herber

I've never heard of any way of doing this.
Electronic and Electrical engineering, business and software stencils for Visio -

https://www.paulherber.co.uk/

Nikolay

Mee too. But does not seem to be impossible.
Theoretically, you could subclass the tabs window and hide it.
I would not do it though.

Paul Herber

Might not give you more active work area though, other code might assume the page tabs area is visible with a certain height.
Electronic and Electrical engineering, business and software stencils for Visio -

https://www.paulherber.co.uk/

Nikolay

You can try to resize work area as well "manually"  ;D
The whole thing is of course not supported and in no case recommended. But if somebody REALLY-REALLY wants to remove tabs, or maybe just out of the interest, well, he could try to.

vojo

This might help

https://social.technet.microsoft.com/Forums/office/en-US/7ca335be-ca1f-47e2-b634-a8930f7b49d3/hide-visio-page-tabs-interface?forum=visiogeneral

I assume using the drop down of the menus, minimize stencils, don't open format panel, etc and all the clumsiness that
entails is not enough???

also, might try floating the drawing window then maximize it

lastly, while I never tried it, there is a docmd  to open the selected shape - in your case, a group - in a new window.
That may give you more control.

Croc

ActiveWindow.ShowPageTabs = false in Immediate window does not help?

Nikolay

You are right, ShowPageTabs works perfectly! :o

Paul Herber

This all makes my response look rather useless! Sigh.  ::)
Electronic and Electrical engineering, business and software stencils for Visio -

https://www.paulherber.co.uk/

Nikolay


wapperdude

Wow.  One some reply and two things learned. 

Cool.
Visio 2019 Pro

Hey Ken

   It's more than just things learned.  This question brings back bad memories from almost 20 years ago when I was first learning Visio VBA. 

   Somewhere, somehow, while searching for a different solution, I accidentally turned off the page tabs.  I could NOT figure out how to turn them back on!  So I had to abandon the .vsd and hand-copy a multi-page, hyperlinked drawing to a new .vsd.  It wasn't until many years later that I came across the ShowPageTabs trick.

   So when I saw the title of the thread, I knew exactly what the issue was, having learned it the hard way.  And I also found out the hard way what Application.Visible = False does.  Task manager came to my rescue for that mistake!

   - Ken

Ken V. Krawchuk
Author
No Dogs on Mars - A Starship Story
http://astarshipstory.com

Tom J