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

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
 
A

ARC

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">
 
D

dstork

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>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top