T430 Right shift key showing context menu

Hi,
I just got a Lenovo T430 and after using for barely a month, i got this issue that makes me go crazy.
The OS is windows 8.0 Pro.
Anytime i press the right shift key or the Enter key, i get this context menu popping out, sometimes moving my cursor somewhere else and doing other crazy stuffs
Please what is wrong?

Might be a faulty keyboard or keyboard cable. Try reseating the keyboard?
W520: i7-2720QM, Q2000M at 1080/688/1376, 21GB RAM, 500GB + 750GB HDD, FHD screen
X61T: L7500, 3GB RAM, 500GB HDD, XGA screen, Ultrabase
Y3P: 5Y70, 8GB RAM, 256GB SSD, QHD+ screen

Similar Messages

  • Spill has caused right shift key to be stuck on

    A few months ago I spilled juice on my MBP keyboard (out of warranty - purchased June 2012). I removed all the keys effected and cleaned them. The result of this was that the right shift key was stuck on and it would only start in safe mode + I couldn't log in because I could only type in caps. This is what I did:
    I plugged in a usb keyboard - was able to log in
    I downloaded keyremapper4mac and disabled the right shift key so I could type in NOT CAPS
    Switched to automatic login so I wouldn't be prompted to enter my password anymore
    Removed the usb keyboard
    Again, MBP would only start in safe mode. Then I found out that the key remapper would only work when the computer wasn't in safe mode. I did some googling and found a key combination that would stop the MBP from starting in safe mode. I have left my computer on for awhile now (not shutting it down) and yesterday I shut it down. I started it up holding down the cmd/shift and my login screen came up.
    My problem is that I think I may have forgotten the key combination to bypass the safe mode boot up and I don't know why my login screen came up - maybe because of the key combo I used temporarily turned off the automatic login.
    Does anyone know the combination of keys to press to get past the safe boot so my computer will start up normally? I am running 10.7.5.
    Thanks!!

    Someone else said to try and reboot by holding down the menu and play button on the remote for several seconds and then try again. It worked for several people and seems to be working for me now.

  • ALV: Right Button Click and Context Menu

    Hi Experts,
    I have to implement an ALV which should act on a right button click and show a context menu.
    Is this possible? I found only events for "on_double_click" or "on_link_click" and is it possible to show a context menu?
    Thanks in advanced.
    Best regards,
    Markus

    Hello Markus
    The relevant events are:
    CONTEXT_MENU_REQUEST
    USER_COMMAND
    Have a look at my sample report ZUS_SDN_ALV_CONTEXT_MENU_1.
    *& Report  ZUS_SDN_ALV_CONTEXT_MENU_1
    *& <a class="jive_macro jive_macro_thread" href="" __jive_macro_name="thread" modifiedtitle="true" __default_attr="910750"></a>
    *& Thread: ALV: Right Button Click and Context Menu
    *& Flow logic of screen 100 (no screen elements; ok_code = GD_OKCODE)
    *&    PROCESS BEFORE OUTPUT.
    *&      MODULE STATUS_0100.
    *&    PROCESS AFTER INPUT.
    *&      MODULE USER_COMMAND_0100.
    REPORT  zus_sdn_alv_context_menu_1.
    DATA:
      gd_okcode        TYPE ui_func,
      go_docking       TYPE REF TO cl_gui_docking_container,
      go_splitter      TYPE REF TO cl_gui_splitter_container,
      go_cell_top      TYPE REF TO cl_gui_container,
      go_cell_bottom   TYPE REF TO cl_gui_container,
      go_grid1         TYPE REF TO cl_gui_alv_grid,
      go_grid2         TYPE REF TO cl_gui_alv_grid,
      gs_layout        TYPE lvc_s_layo.
    DATA:
      gt_knb1          TYPE STANDARD TABLE OF knb1,
      gt_knvv          TYPE STANDARD TABLE OF knvv.
    *       CLASS lcl_eventhandler DEFINITION
    CLASS lcl_eventhandler DEFINITION.
      PUBLIC SECTION.
        CLASS-METHODS:
          handle_double_click FOR EVENT double_click OF cl_gui_alv_grid
            IMPORTING
              e_row
              e_column
              es_row_no
              sender,
          handle_context_menu_request FOR EVENT context_menu_request
                                                     OF cl_gui_alv_grid
            IMPORTING
              e_object
              sender,
          handle_user_command FOR EVENT user_command OF cl_gui_alv_grid
            IMPORTING
              e_ucomm
              sender.
    ENDCLASS.                    "lcl_eventhandler DEFINITION
    *       CLASS lcl_eventhandler IMPLEMENTATION
    CLASS lcl_eventhandler IMPLEMENTATION.
      METHOD handle_double_click.
    *   define local data
        DATA:
          ls_knb1      TYPE knb1.
        CHECK ( sender = go_grid1 ).
        READ TABLE gt_knb1 INTO ls_knb1 INDEX e_row-index.
        CHECK ( ls_knb1-kunnr IS NOT INITIAL ).
        CALL METHOD go_grid1->set_current_cell_via_id
          EXPORTING
    *        IS_ROW_ID    =
    *        IS_COLUMN_ID =
            is_row_no    = es_row_no.
    *   Triggers PAI of the dynpro with the specified ok-code
        CALL METHOD cl_gui_cfw=>set_new_ok_code( 'DETAIL' ).
      ENDMETHOD.                    "handle_double_click
      METHOD handle_context_menu_request.
    *   define local data
        DATA: lt_fcodes    TYPE ui_funcattr,
              ls_fcode     TYPE uiattentry,
              ls_func      TYPE ui_func,
              lt_func      TYPE ui_functions.
        "   Inactivate all standard functions
        CALL METHOD e_object->get_functions
          IMPORTING
            fcodes = lt_fcodes.
        LOOP AT lt_fcodes INTO ls_fcode.
          ls_func = ls_fcode-fcode.
          APPEND ls_func TO lt_func.
        ENDLOOP.
        e_object->disable_functions( lt_func ).
    "   Add new functions
        e_object->add_separator( ).
        CALL METHOD e_object->add_function
          EXPORTING
            fcode = 'XD03'
            text  = 'Call Transaction'.
        CALL METHOD e_object->add_function
          EXPORTING
            fcode = 'DETAILS'
            text  = 'Display Details'.
      ENDMETHOD.                    "handle_context_menu_request
      METHOD handle_user_command.
    *   define local data
        DATA:
          ls_knb1   TYPE knb1,
          ls_row    TYPE lvc_s_row,
          ls_col    TYPE lvc_s_col.
        "   NOTE: in case of CL_GUI_ALV_GRID the functions of a context menu
        "         are handled in method USER_COMMAND.
        CHECK ( e_ucomm = 'XD03'      OR
                e_ucomm = 'DETAILS' ).
        CALL METHOD sender->get_current_cell
          IMPORTING
            es_row_id = ls_row
            es_col_id = ls_col.
        CASE e_ucomm.
          WHEN 'XD03'.
            READ TABLE gt_knb1 INTO ls_knb1 INDEX ls_row-index.
            SET PARAMETER ID 'BUK' FIELD ls_knb1-bukrs.
            SET PARAMETER ID 'KUN' FIELD ls_knb1-kunnr.
            CALL TRANSACTION 'XD03' AND SKIP FIRST SCREEN.
          WHEN 'DETAILS'.
      "       NOTE: only for the sake of simplicity the event handler method
            "             is called
            CALL METHOD lcl_eventhandler=>handle_double_click
              EXPORTING
                e_row  = ls_row
                sender = go_grid1.
          WHEN OTHERS.
        ENDCASE.
      ENDMETHOD.                    "handle_user_command
    ENDCLASS.                    "lcl_eventhandler IMPLEMENTATION
    START-OF-SELECTION.
      SELECT        * FROM  knb1 INTO TABLE gt_knb1
             WHERE  bukrs  = '1000'.
    * Create docking container
      CREATE OBJECT go_docking
        EXPORTING
          parent                      = cl_gui_container=>screen0
          ratio                       = 90
        EXCEPTIONS
          OTHERS                      = 6.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Create splitter container
      CREATE OBJECT go_splitter
        EXPORTING
          parent            = go_docking
          rows              = 2
          columns           = 1
    *      NO_AUTODEF_PROGID_DYNNR =
    *      NAME              =
        EXCEPTIONS
          cntl_error        = 1
          cntl_system_error = 2
          OTHERS            = 3.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Get cell container
      CALL METHOD go_splitter->get_container
        EXPORTING
          row       = 1
          column    = 1
        RECEIVING
          container = go_cell_top.
      CALL METHOD go_splitter->get_container
        EXPORTING
          row       = 2
          column    = 1
        RECEIVING
          container = go_cell_bottom.
    * Create ALV grids
      CREATE OBJECT go_grid1
        EXPORTING
          i_parent          = go_cell_top
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Set event handler
      SET HANDLER:
        lcl_eventhandler=>handle_double_click         FOR go_grid1,
        lcl_eventhandler=>handle_context_menu_request FOR go_grid1,
        lcl_eventhandler=>handle_user_command         FOR go_grid1.
      CREATE OBJECT go_grid2
        EXPORTING
          i_parent          = go_cell_bottom
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Display data
      gs_layout-grid_title = 'Customers'.
      CALL METHOD go_grid1->set_table_for_first_display
        EXPORTING
          i_structure_name = 'KNB1'
          is_layout        = gs_layout
        CHANGING
          it_outtab        = gt_knb1
        EXCEPTIONS
          OTHERS           = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      gs_layout-grid_title = 'Customers Details (Sales Areas)'.
      CALL METHOD go_grid2->set_table_for_first_display
        EXPORTING
          i_structure_name = 'KNVV'
          is_layout        = gs_layout
        CHANGING
          it_outtab        = gt_knvv  " empty !!!
        EXCEPTIONS
          OTHERS           = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Link the docking container to the target dynpro
      CALL METHOD go_docking->link
        EXPORTING
          repid                       = syst-repid
          dynnr                       = '0100'
    *      CONTAINER                   =
        EXCEPTIONS
          OTHERS                      = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * NOTE: dynpro does not contain any elements
      CALL SCREEN '0100'.
    * Flow logic of dynpro (does not contain any dynpro elements):
    *PROCESS BEFORE OUTPUT.
    *  MODULE STATUS_0100.
    *PROCESS AFTER INPUT.
    *  MODULE USER_COMMAND_0100.
    END-OF-SELECTION.
    *&      Module  STATUS_0100  OUTPUT
    *       text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'STATUS_0100'.  " contains push button "DETAIL"
    *  SET TITLEBAR 'xxx'.
    * Refresh display of detail ALV list
      CALL METHOD go_grid2->refresh_table_display
    *    EXPORTING
    *      IS_STABLE      =
    *      I_SOFT_REFRESH =
        EXCEPTIONS
          OTHERS         = 2.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
    *       text
    MODULE user_command_0100 INPUT.
      CASE gd_okcode.
        WHEN 'BACK' OR
             'END'  OR
             'CANC'.
          SET SCREEN 0. LEAVE SCREEN.
    *   User has pushed button "Display Details"
        WHEN 'DETAIL'.
          PERFORM entry_show_details.
        WHEN OTHERS.
      ENDCASE.
      CLEAR: gd_okcode.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    *&      Form  ENTRY_SHOW_DETAILS
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM entry_show_details .
    * define local data
      DATA:
        ld_row      TYPE i,
        ls_knb1     TYPE knb1.
      CALL METHOD go_grid1->get_current_cell
        IMPORTING
          e_row = ld_row.
      READ TABLE gt_knb1 INTO ls_knb1 INDEX ld_row.
      CHECK ( syst-subrc = 0 ).
      SELECT        * FROM  knvv INTO TABLE gt_knvv
             WHERE  kunnr  = ls_knb1-kunnr.
    ENDFORM.                    " ENTRY_SHOW_DETAILS
    Regards
      Uwe

  • Press Right Shift key using Robot

    Hi,
    I'm developing a small tool in Java where i need to simulate all keys of the Keyboard using Java Robot.
    But, I could not find a way to simulate some Keys like "Right Shift" or "Right Alt" or "Right Control" etc..By default Robot simulates Left Shift.
    Is there a way in Java's Robot to Specify the location of the Key that we want to press ?
    Please post your thoughts and comments on this.
    Thanks
    - Srinivas

    S J I wrote:
    Found that the 'show desktop' shortcut was corrupt. It showed control-
    down arrow keys but was actually the right shift key. Reconfigured the 'show desktop' and it now works properly.
    Good you solved you problem -- but what "show desktop" shortcut are you talking about? The Desktop shortcut in Exposé is F11, has been for years. And how do you get the right shift key only in any shortcut?

  • Right shift key

    When I press right shift key, it moves windows to edge of screen, how can I turn this off?

    S J I wrote:
    Found that the 'show desktop' shortcut was corrupt. It showed control-
    down arrow keys but was actually the right shift key. Reconfigured the 'show desktop' and it now works properly.
    Good you solved you problem -- but what "show desktop" shortcut are you talking about? The Desktop shortcut in Exposé is F11, has been for years. And how do you get the right shift key only in any shortcut?

  • 3 letters + left shift key not working - 2 of them + right shift key working

    Hi all,
    as in subject, I have just bought a laptop g50-45, italian keyboard.
    I encountered this problem:
    "LEFT shift key" + "e" or "d" or "c" combinations do not work. Nothing happens.
    "RIGHT shift key" + "e" or "d" work properly
    "RIGHT shift key" + "c" do not work. Nothing happens
    CAPS key + "e" or "d" or "c" work properly.
    I noticed this issue before making any updates of  windows 8.1
    I tried making an update of the bios and later updating windows but the problem is still there.
    I check with an external keyboard and everything work correctly
    I don't think it could be a mechanical problem because "e", "d" and "c" keys alone work properly, so it seems more a software side problem.
    Thank you for your help.

    thanks, i thought there some quick procedure to do before heading to apple store. i was just wondering, it was working for a while, and then suddenly like that. i have macbook 10.6.8 software. intel core 2 duo. less than a year old, if i'm not mistaken.

  • HT5636 my right shift key was modified to open the Desktop. Now I want to restore it back to normal. How do I unsaying that key?

    Last year I wanted to have a quick way to accessory Desktop. I modified the right Shift key to do this. Now I want to reverse that back to normal. I can't seem to find out how to do that (as I forgot how I did it in the first place).

    System Preferences -> Keyboard -> Shortcuts.
    In Windows look at Ease of Access.

  • Apple Keyboard Right Shift Key malfuntions

    I use the Apple Keyboard. Today I found the the right Shift key does not function normally. For example when I press the right shift key, it has the same function as the Enter key; also when I press the right shift key and then an alphabet, the alphabet appears on the next line and it is capitalized. But if I press the the right shift key and then a punctuation, then the currently typing position becomes the next line while nothing appears. What is the problem with that button? How can it be fixed? Thanks.
    One more extra question: I type something on the URL location that I wanna search something on the search engine. However when I press enter, a new window appears. It should have been appeared on the same tab that I'm using. How can I fix it? Thanks a lot.

    This Apple document may help.
    http://support.apple.com/en-us/HT203162

  • X230 Right Shift Key Sticking

    Title says it all. I can reproduce the issue 100% of the time.
    * This is with the right shift key only.
    * Starting about 1/4 of the way from the left of the key, I press down at the top of the key.
    * While the key is pressed, I drag my finger down to the bottom of the key.
    * When i release my finger, they key stays stuck.
    I type a lot during the day and the issue usually comes up when I have to maintain the press for a few keystrokes and my pinky slides around a little on the shift key, causing it to remain stuck afterwards.
    Anyone experience this issue? Workarounds, fixes?
    Thanks,
    Solved!
    Go to Solution.

    dasacc22 wrote:
    well I just popped the shift key off and inspected. Compared to the other shift key, listened to it closely, etc. Realized the left side of the metal clip was getting caught on something. Shined a flashlight on the chassis and could see where it was scrapping.
    So I took the metal clip off the key and shortened the left side by a very small notch, put the clip back in the key, ran the clip through the holes for it on the chassis and reattached the key. Now there's no more scrapping sound, I can't reproduce the stuck-key issue, and it seems to work perfect now.
    For anyone else reading this and looking to do the same, just take care with how much you take off the metal clip as too much would likely make it not stay in where it belongs in the chassis which would cause you to have to press in the center of the key to register a click.
    I wouldn't recomment this on a brand new - in warranty computer. Better to let warranty resolve this.

  • Want it change right shift key to be new paragraph

    Hi, I want to change the function of the right shift key to oda new paragraph.   I checked the users guide but it didn't answer my question.

    The return key just above the right shift key stars a new paragraph. You'll have to be satisfied with that cause you cannot reprogram they keys.

  • Right shift key not working with middle row of letters

    The right shift key on my Macbook Pro does not work with the middle row of letters. It works with all other letters and numbers, just not A-L. Nothing out of the ordinary happened, it just stopped capitalizing

    Try resetting your SMC and PRAM.
    Resetting the System Management Controller >>
    If that does not work, test it using an external keyboard.
    Dave M.
    MacOSG Founder/Ambassador  An Apple User Group  iTunes: MacOSG Podcast
    Macsimum News Associate Editor  Creator of 'Mac611 - Mobile Mac Support'

  • Wireless Keyboard's left and right shift keys don't like some keys...

    Hello everyone!
    I recently bought a second hand 2009 Apple Wireless Keyboard to use with my iPad 32GB Wi-Fi.
    When pressed by themselves, the keys all individually work - I've tested them all using my MacBook's Keyboard and Character Viewer. The problem is when I use either shift keys with the following keys:
    123456789
    qwertyuio
    Now, the odd thing is, the left shift key won't wok with either of those lines but the right shift key will work with the letters but not the numbers.
    Using sticky keys on my MacBook, I can get every single one of the numbers to give out their character (!@£ etc.) with the left and right shift keys. I've not got Mouse Keys turned on either (and I don't think there's an option to enable it on the iPad)
    Also, the Shift keys work perfectly fine with all of the other keys on the keyboard so they aren't worn out.
    Any ideas what could be making my keyboard this way..? Or should I send it back (if I can...)?
    Thank you for your time!

    ok so i've made a bit of progress on my own...
    i've found the on-screen keyboard viewer (silly me, i was looking under "keyboard" in system preferences...) and this flashes with each key i press except the problematic left and right cursor keys.
    moreover, if i click the left and right cursor keys on the on-screen keyboard, they behave as they should, moving my cursor left and right.
    this is starting to look like a hardware fault but i'd love to be able to test outside of the OSX GUI to be really sure. is there any way i can do that. not sure i want to get the screwdriver out just yet...

  • Right shift key makes quotation mark

    All of a sudden, when I hit my right shift key, I get a quotation mark. I haven't changed any settings and can't figure out why it's doing it.
    Can anyone help?

    Because for some reason the key is pressing on the switch of the key next to it (which is slash/questionmark).
    Try flicking it with your finger. The one next to it as well.
    If it doesn't work and you aren't affraid of damaging your keys, try popping off both keys (with a plastic knife or something similar) and see if maybe there's something lodged in there.

  • Right shift key broken off

    I have my right shift key broken off and dont know hot to put it back on. Please Help.

    Trent,
    Google this on how to reattach the key cap:
    "iBook PowerBook key cap removal"
    That first pdf is an excellent discussion of how the keycaps attach.
    If it won't click back in look carefully at those tiny tabs they may be broken off.
    There are many places to buy replacements.
    Richard

  • Right shift key doesn't work after BIOS update on Satellite A200-28P

    For some reason, after I upgraded my Bios, my right shift key doesnt work and neither does my FOUR and SIX button, hence why i have written in words :(,
    I tried reinstalling windows, hasnt made a difference.
    I tried rolling back the drivers for the keyboard, as well as changing to the US version of the keyboard, nothing has helped.
    Thanks

    okay first problem is, my warranty was due to expire, so i brought an extension, and nothing has happened whatsoever on those regards, secondly, i ran a keyboard test, and i found out that it wasnt only the four six and right shift key which was now no longer working, but also the f2, f10, f11, f12,
    I have used a external keyboard, which works :D but it annoying to use that when the whole point of a laptop is to have the inbuilt keyboard,
    any suggestions on this

Maybe you are looking for

  • Error with JNDI when creating new data source

    Hi : This weekend, while adding new applications to the production environment we ran into a problem where the JNDI tree of the new managed servers was unreachable. The error message we saw was: <1364066840022> <BEA-149231> <Unable to set the activat

  • How do you change the directory of system exec after it has ran once in the current vi

    Hi all, Attached is the sub vi that i am running in my main application.  I run it twice and change the directory of the file to run.  It appears that after i run this vi that i cant change the directory and it tries to run a file from the incorrect

  • How do I install JAVA JVM, JServer and XDK in Oracle Express Ed database

    IF I query with SELECT COUNT(*) FROM all_objects WHERE object_type LIKE 'JAVA%'; I get a count of 0. I see no DBMS_JAVA package. How can I install JAVA JVM, JServer and XDK in the Oracle Express Edition database? I see no initjvm.sql, initxml.sql and

  • Help with anti-virus programs, PLEASE!

    New Lenovo and it won't allow me to install AVG anti-virus. Download completed but when trying to install, after hours of waiting, I get an error message saying something about Microsoft, so I presume it's the bully response trying to make me accept

  • Running Linux Mint on 2011 Macbook pro with OS X Lion

    I want to dual boot my Macbook Pro with Linux Mint. I have heard that there are issues using Lion with dual booting Linux? I was wondering if anyone could explain to me how to dual boot with Linux. Thanks for the help!