dbTalk Databases Forums  

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

comp.databases.ms-access comp.databases.ms-access


Discuss renaming "Exit Access" command to "Exit" in Access 2007 in the comp.databases.ms-access forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
dstork@gmail.com
 
Posts: n/a

Default renaming "Exit Access" command to "Exit" in Access 2007 - 03-10-2008 , 11:31 AM






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

Reply With Quote
  #2  
Old   
ARC
 
Posts: n/a

Default Re: renaming "Exit Access" command to "Exit" in Access 2007 - 03-10-2008 , 01:31 PM






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 (AT) gmail (DOT) com> wrote

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


Reply With Quote
  #3  
Old   
dstork@gmail.com
 
Posts: n/a

Default Re: renaming "Exit Access" command to "Exit" in Access 2007 - 03-10-2008 , 02:16 PM



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>

Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.