Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hiding the Developer extension in the Office button

Status
Not open for further replies.

Goondu

Technical User
Jan 14, 2004
92
SG
This is the link to hide menus in the office button.


I had use it to create to hide the ribbon and other things but I'm unable to hide the Developer menu in the office button.

Does anyone have a clue to hide it?

Code:
<customUI xmlns="[URL unfurl="true"]http://schemas.microsoft.com/office/2006/01/customui">[/URL] 

<ribbon startFromScratch="true"> 

</ribbon> 
<commands> 

<command idMso="FileNewDatabase" enabled="false"/>

<command idMso="FileCloseDatabase" enabled="false"/> 

<command idMso="ApplicationOptionsDialog" enabled="false"/>

<command idMso="FileExit" enabled="false"/>

<command idMso="Developer" enabled="false"/>

</commands>
</customUI>
 
Can't find it even at MS site. The excel file download don't even have the ID for this.

It might be too late for this update in SP2 updates by 28th Apr 2009.
 
In addition, changing to ACCDE or ACCDR is not the solution that I'm looking for, although ACCDR removes the menu it does not solve the problem entirely. All it takes is a smart user to change it to a ACCDE or ACCDB (the file extension) and the menu will appear again.
 
Hope this helps.


<customUI xmlns="<commands>
<command idMso="Help" enabled="false"/>
</commands>

<ribbon startFromScratch="false">

<officeMenu>
<button idMso="FileOpenDatabase" visible="false" />
<button idMso="FileNewDatabase" visible="false" />
<splitButton idMso="FileSaveAsMenuAccess" visible="false" />
</officeMenu>
 
Thank you for replying hmstoo44dd,

But it does not work at all. What I'm refering to is the Developer Packing Wizard add-in.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top