Consulting

Results 1 to 3 of 3

Thread: Solved: Mouse Right click not working in cells

  1. #1
    VBAX Regular
    Joined
    Oct 2007
    Posts
    9
    Location

    Solved: Mouse Right click not working in cells

    Hi ppl!

    I am a newbie around the vba, and have already messed up my excel.
    The problem is that right click for context menu only work if an image is selected, if i select a cell it doesn't work.

    Can anybody help me?

    It works in every application less excel, already uninstalled.

  2. #2
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    Try this in the immediate window in the VBIDE

    Application.Commandbars("Cell").Visible = True

    Application.Commandbars("Cell").Enabled = True
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  3. #3
    VBAX Regular
    Joined
    Oct 2007
    Posts
    9
    Location

    Thumbs up

    Quote Originally Posted by xld
    Try this in the immediate window in the VBIDE

    Application.Commandbars("Cell").Visible = True

    Application.Commandbars("Cell").Enabled = True
    Problem solved!!

    Thanks xld!


Posting Permissions

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