Link to home
Start Free TrialLog in
Avatar of Brogrim
BrogrimFlag for Ireland

asked on

MS Access StartUP (2010)

I have created an application with a "Display Form" on startup, I have also unchecked the "Display Navigation  Pane". The application opens as expected but the Access icon remain in the top left hand corner with a pull down for customize toolbar.

How can I chang the settings that the tabs (File  & Home) and the above are not displayed?
Avatar of Joe Howard
Joe Howard
Flag of United States of America image

You will have to use a custom Ribbon file.

<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
<ribbon startFromScratch="true">
  <qat> </qat>
  <tabs>
     <tab idMso="TabHome" visible="true" />
     <tab idMso="TabCreate" visible="true" />   
     <tab idMso="TabExternalData" visible="true" />
     <tab idMso="TabDatabaseTools" visible="true" />     
 </tabs>
</ribbon>
</customUI>

Open in new window


  <qat> </qat> is responsible for an empty Quick Access Toolbar.
Avatar of Brogrim

ASKER

Where does this code go, this is a desktop application
Avatar of Brogrim

ASKER

I have followed the link

1.    In the Customize the Ribbon window under the Customize the Ribbon list, click the tab that you want to remove.

2.    Click Remove.
    To see and save your customizations, click OK.

Thi has removed the Home tab bit I cant find the File tab to remove
ASKER CERTIFIED SOLUTION
Avatar of Jim Dettman (EE MVE)
Jim Dettman (EE MVE)
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Brogrim

ASKER

Thanks
You can't remove the File tab unless you create your own ribbon, for that see the link posted by Jim Dettman and the second link I posted.
"You can't remove the File tab unless you create your own ribbon"
Actually, you cannot remove the File tab no matter what. But you can remove everything on it.

mx