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

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • dstork@gmail.com

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

    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
  • ARC

    #2
    Re: renaming &quot;Exit Access&quot; command to &quot;Exit&quot ; 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="FileClos eDatabase" label = "Close" <button
    idMso="FileNewD atabase" visible="false" >


    <dstork@gmail.c omwrote in message
    news:d8d4adf6-28ae-4c35-8caa-f83ac90e0680@s5 0g2000hsb.googl egroups.com...
    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

    Comment

    • dstork@gmail.com

      #3
      Re: renaming &quot;Exit Access&quot; command to &quot;Exit&quot ; 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.microso ft.com/office/2006/01/
      customui">
      <commands>
      <command idMso="Help" enabled="false"/>
      <command idMso="Applicat ionOptionsDialo g" enabled="false"/>
      </commands>
      <ribbon startFromScratc h="true">
      <officeMenu>
      <button idMso="FileOpen Database" visible="false" />
      <button idMso="FileNewD atabase" visible="false" />
      <button idMso="FileClos eDatabase" visible="false" />
      <splitButton idMso="FileSave AsMenuAccess" visible="false" />
      <button idMso="FileSave As" visible="false"/>
      <button idMso="FileSave " visible="false"/>
      </officeMenu>
      </ribbon>
      </customUI>

      Comment

      Working...