visio page issue

Wallis McMath 0 Reputation points
2026-06-11T21:46:38.7333333+00:00

a visio drawing does not show any page name tabs at bottom of window. there are 8 pages

Microsoft 365 and Office | Visio | For home | Windows

2 answers

Sort by: Oldest
  1. AI answer

    2026-06-11T21:46:52.9566667+00:00

    In this situation the page tabs are most likely hidden in the Visio window settings.

    To show the page tabs again when using the Visio Drawing Control (for example, Visio embedded in another application), the hosting application must enable the ShowPageTabs property on the Visio Window object. The relevant code pattern is:

    Dim vsoWindow As Visio.Window
    Set vsoWindow = DrawingControl1.Window
    vsoWindow.ShowPageTabs = True
    

    ShowPageTabs controls whether the page tab controls are visible in the drawing window. When set to True, the page name tabs for all pages in the drawing reappear at the bottom of the window.

    If the tabs are intentionally hidden (for example, to show only the white drawing surface), the same property may have been set to False:

    vsoWindow.ShowPageTabs = False
    

    Changing it back to True restores the page tabs so all eight pages can be accessed.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

  2. Ryan-N 15,565 Reputation points Microsoft External Staff Moderator
    2026-06-11T22:12:40.2033333+00:00

    Hi @Wallis McMath ,

    Welcome to the Microsoft Q&A forum.

    Based on your description, the names of each tab at the bottom are not displayed.

    First, please help check the following:

    1. Please verify whether the issue also occurs when you use Visio on the web.
    2. Please check if you may have accidentally dragged/moved this bar and hidden the tab section. User's image User's image

    If the issue still persists, please share a screenshot of the problem for further investigation.

    I look forward to hearing back from you.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread. 

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.