my num lock keeps shutting itself off by itself can i stop this

Anonymous
2010-04-04T15:23:43+00:00

my num lock keeps shutting itself off by itself can i stop this

Windows for home | Previous Windows versions | Windows update

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
Answer accepted by question author
Anonymous
2010-04-05T10:58:03+00:00

Hi vargatron,

a. Was it working fine earlier?

b. Do you remember making any recent changes to your computer?

Important: This section, method, or task contains steps that tell you how to modify the registry. However, serious problems might occur if you modify the registry incorrectly. Therefore, make sure that you follow these steps carefully. For added protection, back up the registry before you modify it. Then, you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click the windows help article below.

Back up the registry**http://windows.microsoft.com/en-us/windows7/Back-up-the-registry**

  1. Go to start and type regedit.exe.
  2. Navigate to HKEY_USERS.Default\Control Panel\Keyboard.
  3. You'll see an entry on the right called InitialKeyboardIndicators. The "usual" default value is 0. Double click on this entry and change the value to 2.
  4. Close registry editor.

Restart the computer. The issue should be fixed by now.

Regards,

Divya R – Microsoft Support.

Was this answer helpful?

100+ people found this answer helpful.
0 comments No comments

73 additional answers

Sort by: Most helpful
  1. Anonymous
    2017-11-21T19:50:57+00:00

    The value was 2.

    This is most annoying because when the num lock switches itself off and you type on it, the cursor jumps to another spot in your document.

    Hi Celia, the registry fix provided in this thread is not intended to address the numlock key spontaneously toggling states. It is only intended to fix a situation where the numlock key is disabled at startup.

    The problem you describe stems from a bug in Microsoft Office that Microsoft has been unable to fix and unwilling to provide a work around (for ten years *cough*). It may be triggered when running a macro enabled workbook, Access front end, or any other Office product/file. Frankly it's very hard to track down.

    The easiest solution is to install a third party utility called NumLocker.

    http://www.softpedia.com/get/System/System-Miscellaneous/NumLocker.shtml

    Again, to anyone reading, there are two separate problems described in this thread.

    1. The initial keyboard state; numlock is disabled at startup.
    2. Numlock spontaneously toggles itself during normal use.

    The former is corrected with the registry fix described at the front of the article (set InitialKeyboardIndicators = 2). The latter is corrected by identifying which macro-enabled Office file, VB front end, or other related application is triggering the state change, or by installing the handy NumLocker utility.

    Was this answer helpful?

    7 people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2016-09-30T19:12:53+00:00

    Folks, there are two unrelated issues here... 

    Issue #1: The Num Lock key is disabled when you log into Windows.

    This is an issue with the keyboard default state defined within the Registry.

    1. Open Regedit.exe
    2. Navigate to HKEY_USERS.DEFAULT\Control Panel\Keyboard
    3. Modify InitialKeyboardIndicators and change this to 2 or 214783650. (The default value will be 0 or 214783648).

    Issue #2: The Num Lock key disables in the middle of your session.

    This is a known bug within the .NET framework that toggles the NumLock state when executing multiple SendKey statements. It is likely that some software you are running is triggering the issue without your awareness. In our case we had a VB front-end to an Access database that was triggering the bug during a text fill procedure on a listbox control. Unless you have code-level access to the program in question you will need to download a service that continuously obtains the state of the Num Lock key and enables it if it is ever disabled. 

    1. Download the NumLocker Windows service. You can find it on SoftPedia or any number of other share sites.
    2. Configure the NumLocker service to always maintain the Num Lock state.  Until Microsoft addresses the issue (also read as 'never') with .NET then you will need to use a service like this.

    Was this answer helpful?

    7 people found this answer helpful.
    0 comments No comments
  3. Anonymous
    2011-12-03T21:18:36+00:00

    As an update, I now believe the issue is chiefly related to "SendKeys" macros as events in Microsoft Access fires them. I am trying to come up with programming alternatives to SendKeys which is so intuitive and usefull to novices like me, but apparantly is regarded by many as "unreiable", which implies random variability which I find hard to square with determinstic computers, but what do I know? Not much or I wouldn't be on this forum.

    Was this answer helpful?

    7 people found this answer helpful.
    0 comments No comments
  4. Anonymous
    2013-03-29T03:21:47+00:00

    This has also been causing me issues for over a year....and I've finally found a fix. I've been developing in Access since v. 1.0 in the early 90's...so I had a lot of legacy code that was translated to new versions as they became available. I was still using the 'A_NORMAL' and 'A_PREVIEW' (and other) command line switches and they compiled in Access 2010 without error. While trying (yet again) to solve the numlock problem, I updated the command line switches throughout my code to the current acNormal, acPreview (and others) and the numlock issue was gone.

    I had also experienced issues with the sendkeys functions (in particular sendkeys "PGUP") and when I had eliminated the use of those, it had solved some of my numlock problems, but not all. Once I updated the command line switches, this solved them all.

    I hope this helps someone.

    Cheers,

    Jeff

    Was this answer helpful?

    4 people found this answer helpful.
    0 comments No comments