+ Reply to Thread
Results 1 to 3 of 3

Missing Shortcut Menu

  1. #1
    Registered User
    Join Date
    09-29-2005
    Posts
    74

    Missing Shortcut Menu

    Please help! When I right click in a cell my Shortcut Menu does not appear. How can I fix this?

  2. #2
    Valued Forum Contributor
    Join Date
    12-16-2004
    Location
    Canada, Quebec
    Posts
    363
    hi

    Temporary workaround
    Can you try if shift+f10. You should see your short menu appearing.

  3. #3
    Valued Forum Contributor
    Join Date
    12-16-2004
    Location
    Canada, Quebec
    Posts
    363
    hi

    The following code will toggle on and off all the short cut menus, including
    the toolbar selection menu, and toggle access to the Customize command

    Sub ShortCutsToggle()
    For Each cmb In CommandBars
    If cmb.Type = msoBarTypePopup Then
    cmb.Enabled = Not cmb.Enabled
    End If
    Next cmb
    With CommandBars("Toolbar List")
    .Enabled = Not .Enabled
    End With
    With CommandBars("Tools").Controls("Customize...")
    .Enabled = Not .Enabled
    End With
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1