G710 Numpad autoinserting 1's

Hello,
after my previous post had a posting error, which I'm pretty upset with, I'm gonna keep this try a little shorter.
When typing 0 and 2 on the numpad of the lap top, in a way that leaves the former key still pressed down, a 1 is autoinserted between the numbers, resulting in patterns like:
012012012
and
210210210
This behaviour also occurs when having disabled num, resulting in changing to insertion mode (0), typing a 1 (1), then moving a line down (2), or the other way around. Take note that it's stil typing a 1 even though the "expected" behaviour would be to skip to the end of the line.
This happens only to the numbers on the numpad of the inbuilt keyboard, in every textbox, be it this one, excel, notepad, etc. No, I'm not using any external text editing or text refining or auto correct software. No, I'm not going to install lenovo's thirdparty software to troubleshoot. Yes, all drivers are up to date. Yes, I've tried restarting the PC. No, I'm not going to reinstall my OS. I just want to know whether there's an easy and quick fix available, as this seems like a idiotically coded "feature". A registry key fix is all I ask for. I just want to get my taxes done and this behaviour isn't exactly the best premise for dealing with numpad typing. In the hopes that this can be resolved quickly...

I have the exact same problem.with numpad 2 and numpad 0.so when I type 2 I get 121212121212and with 0 I get 10101010101010

Similar Messages

  • G710 Windows 7 Pro x64 Bluetooth + Wireless driver install errors (can't install)

    Hi all,
    I've recently just purchased the G710 i3 model as a birthday gift for my dad. It originally came with Windows 8 installed but my father prefers Windows 7 so I've installed this on a SSD (replacing the 1TB drive).
    After updating Windows 7 Professional x64 with updates via ethernet I started to install all the drivers in the following order:
    note: downloaded x64 drivers (for obvious reasons)
    chipset
    graphics (intel hd4600 first followed by nvidia gt 720m)
    NIC LAN
    Audio
    Bluetooth and Wireless (won't work - see below for errors)
    Touchpad
    Card Reader
    Webcam
    Intel Management Engine (ME)
    Intel Rapid Storage Technology Driver (RST)
    BatteryCare (replacing the Lenovo Energy Management)
    I've downloaded all from the Lenovo web site except up to date Chipset, ME and RST from Intel.
    All drivers except for the Bluetooth and Wireless have installed fine. All Fn keys work except for the "Airplane Mode" (guessing due to the driver not being installed).
    These are the following errors I get:
    http://i618.photobucket.com/albums/tt265/aniceguy85/forums_keep/x64_error01.png~original
    after clicking on OK ... I get the following
    http://i618.photobucket.com/albums/tt265/aniceguy85/forums_keep/x64_error02.png~original
    after clicking on OK ... there is another message displayed in the CMD window directly underneath the 1st one which is exactly the same text. Both windows then immediately close.
    I tried the 32 bit version of the driver and got exactly the same result.
    Can this be fixed so it can work? I'm hoping it's not just me.
    Thanks for any help in advance, Pete

    hi pete_agreatguy,
    Welcome to Lenovo Community Forums!
    The extraction maybe looking at a missing folder.
    When you downloaded the driver 
     WLAN and Bluetooth Driver (Intel, Broadcom, Qualcomm) for 64-bit Windows 
    When you doubleclick it it should pop up a winodw where you hit next , agree then it shows a page where you can see a box with a browse button. can you share if you are getting that?
    like this:
    Regards
    Solid Cruver
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Tutorial: Virtual Numpad on laptops that don't have one built-in

    Hi all! After getting so much good help from the people on Arch forums, I thought it was time to give back.
    You remember how on older laptops, you would hit numLock and a portion of your keyboard would become a numpad? (specifically, the 789uiojklm keys) Well, recently I got a new Lenovo Y40 and I never knew how much I loved having a numpad until I found that my new laptop didn't have one. Unfortunately, the Y40 does not come with this feature out of the box, but luckily, Arch Linux is on our side. I am going to tell you how I set up my own virtual numpad using tools that come built-in with X.
    Before we start, I should point out that everything I learned in order to do this was found here:
    https://wiki.archlinux.org/index.php/X_ … _Modifiers
    From the warnings section:
    It is possible (and, in fact, easy) to end up disabling some keys on your keyboard for the current X session while working with XKB. This includes modifiers, cursor arrows and Enter key, as well as C-A-Backspace and C-A-Fx combinations. Make sure you have some way to terminate the session without using your keyboard.
    While it is rare, changing XKB configuration can sometimes hang or crash X server. Make sure you can handle it. Having some way to killall X or reboot the host remotely may be a good idea.
    Stop xxkb, or any other layout switching applications. xxkb actively changes XKB state. Debugging both at the same time is not a good idea.
    And finally, be warned: it is very easy to get used to custom layout.
    If you want to learn more, that wiki article is the best available xkbcomp documentation for people who aren't X developers (lit. me). And with that, let's get started!
    Getting Set Up + xkb Background Info
    The first thing we will do is run the command
    xkbcomp $DISPLAY outfile.xkb
    This will spit out the code that represents the current keyboard layout. Our end goal will be to code in what we need into this file, and upload it back to the X server. I recommend editing this file in an editor with C/C++-style syntax highlighting, since it might prevent you from making syntactical errors.
    There are many sections to the .xkb file, but we will only concern ourselves with xkb_types, xkb_compatibility, and xkb_symbols.
    xkb_types lets you define types for each of the keys on your keyboard. For example, if you use Canadian Multilingual Standard (like I do) most of your keys are given the type "EIGHT_LEVEL_SEMIALPHABETIC". When a "special key" like ctrl, alt, caps lock, etc is pressed, in xkb_types, we map these modifiers to "LevelN", and different combinations will mean different things for different types. For 8-level-semialphabetic, no special keys pressed is "Level1", Shift is "Level2", etc.
    If we jump forward to xkb_symbols, and look at the keys, we see that each key is assigned a type, and an array. The first element in the array is what symbol the key represents for Level1, the second is the symbol for Level2, etc.
    Finally, xkb_compatibility allows us to set which keys turn on which modifiers (as well as other things).
    So with that, let's get started
    Editing the layout
    We will begin by editing the xkb_types section. First, we will pick an unused type from xkb_types (you could create your own, but it will be more work). It doesn't matter which type you picked, so long as none of your keys use it. Take down the name. Now delete the unused type, and in its place, copy paste the type that your keys used already. Finally, change the name of the copy to the type you deleted. For example, I deleted EIGHT_LEVEL_ALPHABETIC, copied and pasted EIGHT_LEVEL_SEMIALPHABETIC, and changed the name on the copy back to EIGHT_LEVEL_ALPHABETIC. Next, change the modifiers variable to accept NumLock. This is done by concatenating '+NumLock' before the semicolon. Lastly, we will bind it to a level. You can create a level, or simply pick one that you were not using, and add the line (where N is the desired Level)
    map[NumLock]= LevelN;
    Next, we will turn our attention to xkb_compatibility. Simply copy paste this code into the xkb_compatibility section, taking care to replace Scroll_Lock with the key you wish to use to toggle the numpad:
    interpret Scroll_Lock {
    virtualModifier= NumLock;
    action= LockMods(modifiers=NumLock);
    Now comes the more tedious part of editing the layout. For every key that is part of your virtual numpad, change the type to the copy we made earlier. (In my example, I would change EIGHT_LEVEL_SEMIALPHABETIC to EIGHT_LEVEL_ALPHABETIC). Finally, locate the Nth element in the array (indexing from 1) where N is the level you bound the NumLock modifier to in xkb_types. Replace this with the desired nunmpad key. For your convenience, here is a list of the numpad keys I used:
    KP_0
    KP_1
    KP_2
    KP_9
    KP_Add
    KP_Subtract
    KP_Divide
    KP_Multiply
    KP_Decimal
    For example, here is the entry for my 'u' key (note the KP_4):
    key <AD07> {
    type= "EIGHT_LEVEL_ALPHABETIC",
    symbols[Group1]= [ u, U, NoSymbol, NoSymbol, downarrow, uparrow, NoSymbol, KP_4 ]
    If you are wondering what to do if you want to bind numpad keys to your Fx keys, I added a note at the end of the post.
    Uploading the layout to the X Server
    And now the moment of truth. First, run
    xkbcomp myNewLayout.xkb
    This will NOT upload to the X Server yet; it will only compile the file and check its syntax. One cryptic error I got was because I used C-style /*block quotes*/. xkbcomp doesn't like these, but it doesn't mind //this kind of comment. If we have no errors, we can now upload with
    xkbcomp myNewLayout.xkb $DISPLAY
    Well, go ahead and try it out, there will almost surely be some really neat tweaks you can do.
    Extra Stuff/Notes
    When you hit Scroll_Lock (or whichever key it was you chose) it locks the new type we made to LevelN. This is why we went to the trouble of making a new type, so that the rest of the keyboard would not be locked in LevelN mode. For example, on my setup, I first tried this without creating a new type, and found that the rest of my keyboard was not behaving normally, since it was also bound to Level8 (my desired numpad level). So, I created a new type for my numpad keys so that the rest of the keyboard would still act in its usual manner even when I had the numpad on.
    If you're wondering, I bound KP_Multiply and KP_Divide to my F8 and F9 keys. However, I didn't need to change the type, since the level I chose (Level4) also caused the Fx keys to act normally (except if I rebound them). That is, before I changed anything, all the Fx had the corresponding Fx key bound to Level4. I simply changed the Level4 keybinds for F8 and F9. This meant that when I activated the virtual numpad, F8 and F9 were KP_multiply and KP_Divide, and the rest of the function keys were what they were usually.
    Hopefully, this tutorial won't only help you to make a virtual numpad, but maybe help some other newbies like me to further customize their system. And the Arch Wiki author is right, you really do get used to the new layout and it becomes frustrating to use other computers!
    Happy trails.
    - Marco
    Last edited by mahkoe (2014-11-02 12:17:49)

    Ikester wrote:
    Re: My laptops that don't have a linksys card, but built in wireless can stay connected to WEP
    OK since your security is set to WPA why do you want to go to WEP? DS? If everything is configured correctly you should not have to change anything. If you are connecting another device and forgot what your WPA setting were just go into the router and take a look see.
    1. I set up everything, its all fine and ok
    2. The DS can't connect to WPA, only WEP or Open
    3. I know what my WPA settings are and the codes to both settings

  • Lenovo G710 Battery not detected in Windows 8.1 64 bit

    Hi there,
    I have the Lenovo G710. I haven't used the battery for a while now and  I use the laptop by connecting the powerlead directly to mains power outlet.  I decided today to plug the battery in. The battery indicator lights up.
    Windows 8.1 does not detect the battery and it states "No Battery Detected".
    What i have tried:
    I have installed all the latest Windows Updates and it still doesnt detect the battery.
    I even installed the latest chipset drivers for this laptop and it still doesnt detect it. The only update i cannot install is the BIOS update because it states that "Battery Not Detected".
    I uninstalled the following from Device Manager: Microsoft ACPI compliant Control Method Battery. Switched off the laptopRemoved the battery packRemoved the AC power lead from the laptopHeld the power button for 30 seconds to drain the batteryReconnect the battery packReconnect the AC power leadTurn the laptop on.Battery not detected.
    Can anyone assist what i could do next please?

    bump! 

  • How do you access numpad keys on a macbook pro retina (mid 2012) keyboard while using bootcamp and windows?

    There are no function overlay for numpad on the keyboard and there are backlight controls where the numpad on/off was on previous macbook pro

    Hello gerwintiemens,
    I recommend resetting your SMC and your PRAM. Perhaps even a safeboot as well.
    Intel-based Macs: Resetting the System Management Controller (SMC)
    http://support.apple.com/kb/ht3964
    About NVRAM and PRAM
    http://support.apple.com/kb/ht1379
    Mac OS X: What is Safe Boot, Safe Mode?
    http://support.apple.com/kb/ht1564
    All the very best,
    Sterling

  • How can I get a Macbook (pro) with numpad other than buying a second handed

    Actually,
    I am currently using a Macbook (2,1)
    and i bought it because i thought i had a low demand of graphics, displays, etc.
    And i planned to buy a Macbook Pro in several years.
    However,
    after MONTHS,
    Apple Inc, kills numpad, and i was totally shocked and keep searching for any manufacturer or Apple Inc. itself would allow special hardware request.
    By the way.
    what is "full sized keyboard" actually means?
    does it mean just the qwerty keyboard?
    I was really disappointed with the new keyboard design.
    I believed some of the mac users did the same.

    i really hope someone could and i know you understand numpad is numpad, not just numbers.
    i think if the people in the design group or whatever name it is, do use the numpad, or understand how i numpad would actually affect some of the people. apple inc would just keep it.
    maybe you'll say.
    "oh well, time passes. several years later, numpad will be totally illuminated. we are actually making trend of the computer technology!"
    but then so you mean you can actually cut the fn key, change the arrow keys, etc.
    its kind of sad.
    i knew you understand.
    like the new keyboards has those fastforward, play, rewind keys.
    but those are actually optional you can still set universal hot keys if they are eluminated, and also our beloved apple remote did the same (i mean the ones we are now having)
    however numpad is compulsory functional in some extent, there is no way to access numpad other than using the "Keyboard Viewer".((**slowly clicking**))
    and i believed some of the businessman demand them so well.
    why people just cant leave windows?
    its all about compatibility.
    applications are more and more made for mac.
    but now we have some awkward jagged decision made here just now.
    numpad is kind of the vital function to like at least 10% of the people in the world who use computers.
    there is only one reason i can think of if you say so.
    maybe that is a strategy to keep Mac computers up high in the sky,
    so they, oops, cut users by cutting numpad incidentally.

  • External ITWorks Numpad won't work on MBP with Mavericks

    Hello,
    I'd be really thankful if anyone knows the solution to this one:
    I have a new MBP with Mavericks 10.9.2, for working in Sibelius (notation software) I always used an external
    numeric pad, an I.T. Works model (KP-6910W) via USB.
    It perfectly worked with my old MBP (OS 10.5.something) but isn't even recognised by my new computer.
    Choices in "change keyboardtype" in the system preferences menu only contain full keyboards by either japanese, european or
    american standards, but no numpads...
    Thanks!
    Philipp

    Philipp,
    I use KeyRemap4MacBook as a numeric keypad substitute. On a US English keyboard layout, pressing the fn key provides the following “built-in” numeric keypad equivalents:
    7890-   to   789/=
    uiop    to   456*
    jkl;    to   123-
    m,./    to   0,.+

  • I got a external Apple Wired Keyboard (w/ NumPad), caps lock mapped to control doesn't work with tab + caps lock + shift

    I got a external Apple Wired Keyboard (w/ NumPad) since I'm a developer. I have used control panel > keyboard > modifier keys to make the caps lock key the control key. I can't get it to work when I press caps lock (which maps to control) +shift + tab (which I use to change tabs backwards).
    Any ideas? It works when I use the regular control key, and it works on my built-in MBPro keyboard. Thx!

    Hi Steve, Welcome to apple discussions.
    Hmm, that is a strange problem. Well, you've already done what I would suggest which is to go to the keyboard settings and click the "Restore defaults" button in the modifier keys window and try again. If that doesn't work then you can restart the computer and check. If that doesn't work you can try to reset the pram. Hold the optioncommand+PR buttons after you hear the startup chime, it should chime again, I let it chime a third time just for good measure and see if things look better.
    If that fails then you can try making another account and seeing if the caps lock works in the new account. There might be some strange error on your account that would be corrected for in a new account. After that it gets more labor intensive. Do a system re-install, do an erase and install.
    You might consider a trip to the apple genius bar there in Honolulu if can. The should be able to run through all that for you. You're still under warrantee so take advantage and get some help.
    Oh, and just a disclaimer that I learned from Adam on the maccast podcast. Make a full, complete backup including a time machine and bootable (like superduper or carbon copy cloner) disk before you do any of the above or take the unit it for service.
    Hope this helps.
    John

  • After BIOS update numpad on my Satellite C850 is not working properly

    My numpad started going crazy. All I can use are these "0.369*-+ home button end button PGUP and PGDN "
    The numpad light is on and I cant turn it off. whenever I do this its like Im pressing the FN button and whenever I press numpad 1 it always type gibberish words when I press numpad 2 it does what F12 button does and so on for numpad 4,5,7,8
    This all happen after I updated my BIOS and never has been a liquid spill on the keyboard.
    Any insight about this freaking problem?

    Hi
    I cannot imagine that this issue could be related to the new BIOS version.
    Maybe its a simple bad luck that this keyboard problem appeared after the BIOS update.
    From my point of few, it looks like keyboard hardware malfunction.
    But to confirm this diagnosis, you should try some workarounds.
    *1st* workaround: First of all enter the BIOS and set it to default.
    *2nd* workaround: disconnect AC adaptor, remove battery, press and hold power button 30 sec long. Finally connect both devices again.
    *3nd* workaround: connect external USB keyboard and test the functionality.
    In case the USB keyboard would work properly, the issue is related to internal keyboard fault.

  • Zooming with numpad '+' and '-' doesn't work.

    Hi,
    As the title says; zooming using [ctrl + '+'] or [ctrl + '-'] doesn't work if I use the signs on the numpad.
    It does work if I use the signs on the qwerty (US-International) part of my keyboard. Obviously, I have my numpad turned on.
    Muse:
    v7.2, Build 232, CL 779928
    Windows:
    Windows 7 Ultimate 64-bit (6.1, Build 7600)
    DirectX 11
    It's not that big of a deal for now, but as I could not find any other way to give feedback I decided to post it here.
    Thank you for all your dedicated work!

    Jailbreaking causes problems such as this. Avoid jailbreaking at all costs. Restore in Recovery Mode: http://support.apple.com/kb/HT1808 to do a clean install of iOS and do not jailbreak.

  • G710 headphone jack not working

    Hi,
    the headphone jack on my G710 does not seem to be working.
    I tried two different headphones, no luck.  I get a message "jack is now plugged in", the speakers turn off but no audio in the headphones.
    Latest driver (win 8.1 64) has been installed and the same problem exists in Linux, which I am dual booting.

    Quick update: Got it working in Linux so it must be a Windows specific software issue.

  • Unusual problem with NumPad

    I have quite an unusual problem with my iMac and I'm hoping someone has the answer. I will do my best to explain what's going on.
    I started using a new program called Blender, which is an open source 3D modeling suite. In it, there are hotkeys which are required to function the program, like, CONTROL + NUMPAD 1, 2, 3 and so on...
    I have a full size keyboard with NUMPAD, so this is not a problem for me. However...
    When I attempt to press CONTROL + NUMPAD 1 (for example), it does not trigger the correct function in Blender. Instead, it switches SPACES to the corresponding SPACE. So, if I press CONTROL + NUMPAD 3, it displays my THIRD SPACE.
    This seemed simple enough to fix. I opened System Preferences, Keyboard, Keyboard Shortcuts and changed the hotkeys for SPACES to COMMAND, rather than CONTROL. However, this did not fix the problem entirely. Even though it managed to disable my top row of numbers as hotkeys for switching spaces, it did NOT change the NUMPAD functionality. If I hit CONTROL + NUMPAD 3, it STILL switched to my third space, despite me altering the hotkey to be COMMAND + #. It continues...
    I didn't really need this functionality from SPACES so I decided to try disabling it altogether. Once again, I opened System Preferences, Keyboard, Keyboard Shortcuts but THIS time, I unchecked "Switch to Desktop 1,2,3,4" hotkeys so as to disable the funtionality entirely. Despite this, it STILL did not work. I was STILL able to press CONTROL + NUMPAD #, and switch to the corresponding SPACE. I restarted OS X hoping something might change but it did not. I CANNOT disable this functionality and it is hijacking the ability to operate the Blender program.
    The problem gets stranger...
    I ask my Fiance, who has an identical iMac AND keyboard, running OS X Lion just as I am to attempt to perform similar actions. She was NOT able to switch SPACES by pressing CONTROL + NUMPAD #. Ironically, under HER system preferences, the keyboard shortcuts were all enabled and defaulted to CONTROL + #, yet she could not duplicate my problem on her iMac. As you can imagine, I was getting quite confused at this point and very frustrated. We tried switching keyboards. Same thing. On my iMac, I cannot disable the SPACES hotkey CONTROL + NUMPAD # and on my Fiance's iMac, she can not ENABLE it.
    In summary, whenever I press CONTROL + NUMPAD #, OS X switches to the corresponding SPACE. I've tried disabling the shortcuts under System Preferences but the problem persists. My Fiance has the exacty OPPOSITE problem and cannot enable the functionality. It's not the keyboard and we're running identical iMacs running OS X Lion. Any help would be INCREDIBLY appreciated! Thanks!

    As a matter of fact, I do have a solution, at least, one that one my laptop.
    First, a couple of trouble shooting steps:
    Create a new user a log as the new user.  If the new user doesn't have they Control-Numpad issue, you are probably looking at a user preferences issue.
    Start in safe mode (hold shift while booting).  Any number of extensions may map these keys for you (as a favor, of course)
    That said, I suspect that this is a user preferences issue; such as it was for me.
    The solution is to remove the symbolichotkeys property list file; it should be regenerated cleanly when you next log in.  The two files you need to remove are:
    ~/Library/Preferences/com.apple.symbolichotkeys.plist
    ~/Library/Preferences/com.apple.symbolichotkeys.plist.lockfile
    I always suggest having a system backup before fiddling, and I moved the files to my desktop temporarily (just in case!) before rebooting, testing, and finally deleting them.
    Here is some information on the files:
    http://hintsforums.macworld.com/showthread.php?t=114785
    Let me know if that solves your problem; it was a bear to track down.

  • Shift-Ins no longer works for numpad in Linux

    After I updated from version 24 to 31 pasting text with Shift and numpad Ins (the button that also has "0") stopped working. Ctrl-Ins works as before. Shift with the other Ins works as before. Shift with numpad Ins works as before in other applications, for example Konsole. Same for safe mode and clean profile. Same for versions 34 and 35.
    I am usinng Gentoo Linux AMD64, KDE 4.12. I tried both building from source and using prebuilt binaries. I enable using Shift with numpad with the following line in .xinitrc:
    setxkbmap -layout 'us,ru' -option 'grp:alt_shift_toggle,grp_led:scroll,numpad:microsoft,compose:caps'
    Even though Ctrl-V and the other Ins still work, I've been using numpad Ins since 1991. Relearning is painful.

    Have you tried it in "Safe Mode" - F10 > Help > Restart with addons disabled?
    When I enter "about:customizing" it takes me to the same customising view as does using right-mouseclick on a non-active part of the main toolbar.
    Another gotcha might be that at the bottom-left there is a drop down list where menus can have their visibility set. It's possible for some buttons to be hidden because these menus are set "off". Just for when you do find your customise page ...

  • My numpad won't work. Instead of numbers, my cursor just moves slightly.

    my numpad won't work. there's a beep when i hit numlock and instead of numbers, my cursor just moves slightly. i figure it's something simple, but i'm not sure how to fix it.

    it's a mac mini with 10.5.6 on it. the keyboard is actually i think intended for a pc, but it worked fine for the mac. i also had a legit apple keyboard that worked fine as well. i think that i may have accidentally tweaked the preferences somehow, and it disabled my num lock.

  • External numpad requires reboot

    Hello, I recently bought an external numpad, which works fine but only after a reboot.
    If I plug it in while my MacBook is booted it never recognizes the device.

    Also, I have no idea what the brand is. It's not mentioned anywhere on the device.

Maybe you are looking for

  • Creation of Add-on package for 64 bit and 32 bit SAP Business One Client

    Please help me creating package for 64 bit and 32 bit SAP Business One. If Add-on executable is compiled with x86 option then there is no issue of connecting Add-on with 32 bit SAP Business one and if Add-on executable is compiled with Any CPU option

  • When using presenter display, my videos are jumpy. Why?

    Hello: I just upgraded to Keynote 3 and am having a nightmare. I use the Presenter display mode so I can see the next slide, (no mirroring) and use a lot of Quicktime video clips in my engagements. In Mirroring mode they run smoothly. In the presente

  • Ringback Tones

    My previous carrier allowed me to choose the tune callers heard when calling me. I have not been able to find this function on my new Iphone. Is it possible.

  • Unable to re install osx after erasing HD on iMac

    Hi I have a 2007 iMac 4,1 Intel core duo 2ghz that refused to boot after crashing. After much searching of support articles i have tried all suggestions. It would not accept the original [tiger] install discs[superdrive spits them out] so i used my m

  • Ipad keeps restarting on its own

    Hello, I changed the language on my iPad 3 and after that it keeps resetting itself. Can anyone help me please?