renaming "Exit Access" command to "Exit" in Access 2007

  • Thread starter Thread starter dstork
  • Start date Start date
D

dstork

Anyone know how to rename the "Exit Access" command at the bottom of
the Office menu. I'd like to rename it to "Exit" as I had done in
previous versions of Access. I know I can disable it with

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

.... but what about renaming it?

ds
 
Probably something like this:

<button idMso="FileExit" label="Exit" />

I haven't test the above, but have tested the "Close Database" command
below:

<button idMso="FileCloseDatabase" label = "Close" > <button
idMso="FileNewDatabase" visible="false">
 
Unfortunately, I tried this with no luck. Using "button" in the xml
statement instead of "command" actually places a button in the Office
menu with the label renamed. However, it doesn't rename the command
at the buttom of the Office menu.

Any other ideas?


Here's what I've got so far...

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/
customui">
<commands>
<command idMso="Help" enabled="false"/>
<command idMso="ApplicationOptionsDialog" enabled="false"/>
</commands>
<ribbon startFromScratch="true">
<officeMenu>
<button idMso="FileOpenDatabase" visible="false" />
<button idMso="FileNewDatabase" visible="false" />
<button idMso="FileCloseDatabase" visible="false" />
<splitButton idMso="FileSaveAsMenuAccess" visible="false" />
<button idMso="FileSaveAs" visible="false"/>
<button idMso="FileSave" visible="false"/>
</officeMenu>
</ribbon>
</customUI>
 
Back
Top