Share via

Powerpoint opening default tab

Anonymous
2018-04-09T19:55:09+00:00

Hi,

  When I opened power point 2010 it made the "home" tab the default tab in the new power point window. I want the "file" tab to be default tab. Please advise. Thanks.

from

Richard

Microsoft 365 and Office | PowerPoint | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2018-04-12T14:05:26+00:00

Pretty sure the Auto_Open runs BEFORE the ribbon is created. It can be done with an AddIn but you would need to trap the WindowActivate event in a class module. You would also need to make sure it did NOT run when later windows activate.

You can download the barebones code HERE

CAUTION THIS IS NOT A FULLY DEBUGGED PROJECT JUST A POINTER

Was this answer helpful?

0 comments No comments

6 additional answers

Sort by: Most helpful
  1. Anonymous
    2018-04-11T09:44:51+00:00

    The problem is that Auto_Open does NOT run when you open a new session.

    Was this answer helpful?

    0 comments No comments
  2. John Korchok 232.8K Reputation points Volunteer Moderator
    2018-04-10T21:51:19+00:00

    It may be impossible to do, or merely very difficult. I was trying things out in Word, because it would have an identical syntax, but the programming environment is better. I found a couple of other indicators that the File tab is different:

    • While you can customize the position of all the other tabs, the File tab is fixed.
    • If you assign a normal builtin keyboard shortcut, like Ctrl+F, Word will tell you that shortcut is already assigned to NavPaneSearch. But if you try to assign Alt+F, it will report it [unassigned]. Since that is the shortcut that opens the backstage, it's clearly a different class of shortcut then a normal one.

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2018-04-10T19:03:23+00:00

    Much thanks John for the instruction. It is very helpful.  I appreciate it.

    I did the following test:

    Open PowerPoint, hit "Alt+f" and PowerPoint directed me to File tab so I created a macro in PowerPoint with the following code:

    Sub Auto_open()

      SendKeys "%(f)", True

    End Sub

    I compiled the code,  no error message but when I run the macro it doesn't work.

    Was this answer helpful?

    0 comments No comments
  4. John Korchok 232.8K Reputation points Volunteer Moderator
    2018-04-10T00:55:06+00:00

    This isn't so easy because the File tab isn't actually a tab, it's the Backstage view. The simplest way is to write a macro that uses SendKeys: Office 2010 BackStage Tab Activate custom tab onShow() event?

    Let us know if you need help implementing this.

    Was this answer helpful?

    0 comments No comments