Connecting Tech Pros Worldwide Help | Site Map

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

  #1  
Old March 10th, 2008, 06:35 PM
dstork@gmail.com
Guest
 
Posts: n/a
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
  #2  
Old March 10th, 2008, 08:35 PM
ARC
Guest
 
Posts: n/a

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


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


<dstork@gmail.comwrote in message
news:d8d4adf6-28ae-4c35-8caa-f83ac90e0680@s50g2000hsb.googlegroups.com...
Quote:
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
  #3  
Old March 10th, 2008, 09:25 PM
dstork@gmail.com
Guest
 
Posts: n/a

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


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>
Closed Thread