That usually happens if there's an error in the ribbon code. Make sure you
have, under the office button, access options, Advanced, "show add-in
user
interface errors". With this checked, you will see if there are any
error's
in your ribbon. If there's even one error, the ribbon will not show any of
your customizations.
In the list of save commands, I'm not seeing this one:
="FileSaveAsMenuAccess". You might want to get rid of that line entirely.
Andy
"evenlater" <evancater@[EMAIL PROTECTED]
> wrote in message
news:22b6e56e-1414-44f8-8b21-95bf68987df1@[EMAIL PROTECTED]
> Thanks, but it's still not working. I get the default ribbons/office
> button menu.
>
>
> On Jul 2, 6:03 pm, "ARC" <PCES...@[EMAIL PROTECTED]
> wrote:
>> 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" <evanca...@[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>
>


|