Even though most of the information on how to customize the Ribbon in Access 2007 is already out, there are two recurring question that I've been seeing being asked often:
How can I customize the Office Button Menu (aka File Menu)?
We allow you to show/hide any controls off of the Office Button menu, effectively customizing it fully. The way to do it is by specifying a custom ribbon, following these steps:
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui"> <ribbon> <officeMenu> <!-- First we hide all the items displayed by default -->
In the example above, you will notice that the File Menu only has now the Print button. Of course, you can add your own commands here.
There is however a small caveat as you probably noticed above: you will still have the "Access Options" button in the File Menu. To get rid of it, you will need to change the "Allow Full Menus" property (off of the Current Database options in the Access Options - same location as the "Ribbon Name" option above) to "No". When you set "Allow Full Menus" to "No", not only 'Access options' goes away, but most of the Ribbon tabs as well. At this point it is expected that you really want to roll your own ribbons.
Can I keep my totally custom solution with custom toolbars or will I get the Ribbon anyway?
Finally, to allay some fears I heard being spread around: if you have a completly custom solution from Access 2003 or earlier where the built-in toolbars were disabled and you had custom menubars at startup, it will be shown as you designed it when opened in Access 2007. No ribbon will show up for it.