Try changing to: <customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" onLoad="OnRibbonLoad"> <ribbon startFromScratch="true"> <officeMenu> <button idMso="FileNewDatabase" visible="false"/> <button idMso="FileOpenDatabase" visible="false/> <splitButton idMso="FileSaveAsMenuAccess" visible="false" /> </officeMenu> <tabs> <tab id="tab0" label="Home"> <group idMso="GroupWindowAccess" > </group> </tab> </tabs> </ribbon> </customUI> "evenlater" <evancater@[EMAIL PROTECTED] > wrote in message news:1576d9c6-a39f-4181-b550-5770e6a13644@[EMAIL PROTECTED] > I've added the code just below the "startFromScratch" line, but it's > still not working. I'm not sure if the fact that I wrote the original > ribbon code with the IDBE Ribbon Creator is part of the problem. > Here's what I've got... can you see what I'm missing here? > > <!-- Created with IDBE Ribbon Creator (Version: 1.1017) --> > <!-- http://www.RibbonCreator.com --> > <!-- http://www.RibbonCreator.de --> > <customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" > onLoad="OnRibbonLoad" loadImage="LoadImages"> > <commands> > <command idMso="Help" enabled="true"/> > <command idMso="WindowClose" enabled="true"/> > <command idMso="WindowRestore" enabled="true"/> > <command idMso="WindowMinimize" enabled="true"/> > </commands> > <ribbon startFromScratch="true"> > <officeMenu> > <button idMso="FileNewDatabase" visible="false"/> > <button idMso="FileOpenDatabase" visible="false/> > <splitButton idMso="FileSaveAsMenuAccess" visible="false" /> > </officeMenu> > <tabs> > <tab id="tab0" label="Home"> > <group idMso="GroupWindowAccess" > > </group> > </tab> > </tabs> > </ribbon> > </customUI>