My keyboard is typing the letters instead of numbers?

My laptop keyboard is typing the letters instead of numbers. Before that happened, I was cleaning the keyboard with a toothpick, and when I clicked on Google Chrome, I typed in face and then I tried typing in the book, but then he is out,: faceb662 and at first I thought I used the numbers up but I wasn't.

Uh, here is the info on my laptop:
Windows Vista™ Home Premium
Service Pack 2
Manufacturer: Hewlett-Packard
Model: HP Pavilion dv4 PC network
Help, please! T T

You have enabled your NumLock key, your number lock led should be on. Keep your 'fn + NumLock' keys at once to unlock.

Tags: Windows

Similar Questions

  • A loop in the letters instead of numbers

    I need to create an array of strings containing ranging A100 at X 999.  I tried a loop in the letters, but I don't think this is possible

    var arrayAct = new Array();

    for (i = 'A'; I < = 'X'; i ++) {}

    for (i2 = 100; i2 < = 999; i2 ++) {}

    arrayAct.push (String (i + i2));

    }

    }

    Yes, but like this:

    for (var i = "A".charCodeAt (0); ") i<= "x".charcodeat(0);="">

    Console.println (string.fromCharCode(0)) (i));

    }

  • Keyboard, type the letters instead of numbers

    After getting a virus on my computer and run MalwareBytes, my keyboard shows numbers when I typed letters. I have a Windows XP desktop PC and NUMLOCK is not on, so something is wrong. This does not occur when you use my admin account, apparently since I wasn't using it when I got the virus.  When they provide answers, please keep in mind that I can't run any programs in the account assigned because of problems caused by the virus file association. Runs the file XP on Doug Knox website for fixing exes did nothing within the affected account.

    The virus has not caused the problem. I found on another site that this is as a result of protection Comcast ConstantGuard.  I uninstalled it, and my keyboard is now back to normal. Most sites say it is caused by a num lock, but it wasn't the case with me.

  • keyboard typing letters instead of numbers.

    How to change a setting on my laptop keyboard to type letters numbers? It is stuck. I clicked on the upper button and it won't make the letters? I must have
    a click on a button to do this way. (accidentally). The laptop is a Compaq Presario F700.

    Frustrated,
    Jules

    Hello

    (1) have you made changes before the start of this issue?

    (2) this problem occurs when you type on the specific application?

    Method 1:

    Use the keyboard of the screen and check if the problem persists and let us know the status of the issue. Follow the steps in the link:

    http://Windows.Microsoft.com/en-us/Windows-Vista/type-without-using-the-keyboard-on-screen-keyboard

    Method 2: You can have your NumLock. Please make sure that you turn it off by pressing the NumLock key and control if the problem persists.

    Also to ensure that the function key (fn) key on the keyboard is not subtracted when typing.

    I hope this helps.

  • On my C55-B803 Satellite keyboard is typing double letters

    My laptop keyboard Satellite C55-B803 began typing double letters suddenly.

    When I press 'a', it is like 'aa' and when I press BACKSPACE, the two 'aa' disappeared. On the screen the keyboard works fine. I tried all possible ways... cleaning keyboard replacement keyboard settings also.

    Pls help...

    The same problem occurs if you want to use the external USB keyboard?

    If external USB keyboard works properly, the problem of double letters is related to the breakdown of internal keyboard.
    Then there is only one solution: keyboard replacement.

  • Count with letters instead of numbers

    Hello world

    Today, I had an obligation to represent the rownums of a Recordset (1, 2, 3, 4, 5 and so on) as the letters (A, B, C, D, E and so on). First I thought there is a database function equal to the function to_char with RN parameter (which is capable of easily converting numbers to Roman numerals)... but I found nothing of didn t.

    So is it a database work that I have not yet found a haven´t or you have a custom code to make me realize this?

    Ty in advance
    -Oliver

    Hello

    I don't think it's quite as simple as that. OP is not a number of base-26, because there is nothing quite like a 0 in this system, and therefore nothing quite like a 0.
    In a base-26 system, you could represent 26 ^ 2 ^ distinct numbers with strings up to 2 characters.
    OP wants something where you can represent 26 ^ 2 ^ + 26 separate numbers with strings up to 2 characters: 26 issues of the strings of characters-1 a set completely disjoint from 26 ^ 2 ^ ros with 2 strings.

    I think the OP needs something more complicated, like this:

    CREATE OR REPLACE FUNCTION to_abc
    (      in_num       IN        PLS_INTEGER               -- Number to be converted
    )
    RETURN     VARCHAR2
    DETERMINISTIC
    IS
         in_num_26     PLS_INTEGER    := MOD (in_num, 26);
         rest          PLS_INTEGER;
         return_txt     VARCHAR2 (30);
    BEGIN
         IF  in_num IS NULL
         THEN
              RETURN     NULL;
         ELSIF  in_num <= 0
         THEN
              RETURN  '-';
         END IF;
    
         return_txt := CHR ( 64 + CASE
                             WHEN  in_num_26 = 0
                             THEN  26
                             ELSE  in_num_26
                                  END
                      );
    
         rest := CEIL (in_num / 26);
    
         IF  rest = 1
         THEN
              RETURN     return_txt;
         ELSE
              RETURN  to_abc (rest - 1) || return_txt;
         END IF;
    END     to_abc;
    

    Script test (including your base26 function, for comparison):

    COLUMN     base26          FORMAT     A10
    COLUMN     right_txt     FORMAT     A10
    COLUMN     to_abc          FORMAT     A10
    
    SET     NULL     "[NULL]"
    
    WITH test_nums     AS
    (
         SELECT     0 AS n,     '-' AS right_txt     FROM dual     UNION ALL
         SELECT     1,        'A'               FROM dual     UNION ALL
         SELECT     10,        'J'               FROM dual     UNION ALL
         SELECT     26,        'Z'               FROM dual     UNION ALL
         SELECT     27,        'AA'               FROM dual     UNION ALL
         SELECT     28,        'AB'               FROM dual     UNION ALL
         SELECT     52,        'AZ'               FROM dual     UNION ALL
         SELECT     53,        'BA'               FROM dual     UNION ALL
         SELECT     78,        'BZ'               FROM dual     UNION ALL
         SELECT     79,        'CA'               FROM dual     UNION ALL
         SELECT     702,        'ZZ'               FROM dual     UNION ALL
         SELECT     703,        'AAA'               FROM dual     UNION ALL
         SELECT     1404,       'BAZ'               FROM dual     UNION ALL
         SELECT     1405,       'BBA'               FROM dual     UNION ALL
         SELECT     18278,     'ZZZ'               FROM dual     UNION ALL
         SELECT     18279,     'AAAA'               FROM dual     UNION ALL
         SELECT     18280,     'AAAB'               FROM dual     UNION ALL
         SELECT     NULL,     NULL               FROM dual
    )
    SELECT     n
    ,     to_abc (n)     AS to_abc
    ,     right_txt
    ,     CASE
              WHEN  NVL (to_abc (n), '??') =
                    NVL (right_txt,  '??')
              THEN  ' '
              ELSE  '<== WRONG!'
         END             AS flag
    ,     base26 (n)     AS base26
    FROM     test_nums
    ORDER BY  n
    ;
    

    Results of the test script:

    .        N TO_ABC     RIGHT_TXT  FLAG       BASE26
    ---------- ---------- ---------- ---------- ----------
             0 -          -                     [NULL]
             1 A          A                     a
            10 J          J                     j
            26 Z          Z                     aa
            27 AA         AA                    aa
            28 AB         AB                    ab
            52 AZ         AZ                    ba
            53 BA         BA                    ba
            78 BZ         BZ                    ca
            79 CA         CA                    ca
           702 ZZ         ZZ                    aaa
           703 AAA        AAA                   aaa
          1404 BAZ        BAZ                   bba
          1405 BBA        BBA                   bba
         18278 ZZZ        ZZZ                   aaaa
         18279 AAAA       AAAA                  aaaa
         18280 AAAB       AAAB                  aaab
    [NULL]     [NULL]     [NULL]                [NULL]
    
  • A1 to screen sometimes is not responding or typing the letters double

    Hello

    My A1 sometimes gets in a State where certain areas of the screen, especially in the Launcher, are block and do not respond to taps. Or when the keyboard is open a lot of letters become anael double typing becomes something like this "HHeere iiss some tteexxt '. This is independent of the Launcher or the keyboard that is used.

    Anyone who sees this too?

    This seems to have resolved for now. I'll keep an eye on it and see if it comes back.

  • My Mac wireless keyboard is typing the wrong characters

    Hi all

    All of a sudden my keyboard wireless mac type "instead of @ shift 2"

    ALT 3 product also only sign £ instead of #.

    any advice most welcome. My setting preferably keyboard displays 3 options - British; British and French PC. None seems to make no difference to the foregoing.

    I have a 21.5 inch iMac running El Capitan

    Thank you very much

    Richard

    [email protected] wrote:

    All of a sudden my keyboard wireless mac type "instead of @ shift 2"

    This means that your keyboard is set to British PC rather than British.  Go to the sources of the system/preferences/keyboard and remove PC British, so it cannot become active.

    Your keyboard must be indicated in the menu 'flag' in the top right of the screen.  You click to select another.

  • HP Pavilion dv7: keyboard guard typed the symbol of apostrophe on its own

    Whenever I try to type, it automatically inserts an apostrophe decline. I can hit the BACKSPACE key, and they appear. Press the space key and they appear. How can I fix it? It's a------but the size of an apostrophe.

    I posted this problem on my Facebook page. A friend told me to press the SHIFT key quickly to see if the "sticky keys" were about 5 times. It worked. Problem solved.

  • Using Smartphones BlackBerry 8330 blackBerry keyboard to access the company's repertoire

    Hey all,.

    When I call my phone company # my company BlackBerry 8330, one of my options is to press the sign # to access the company's repertoire.

    But... my keyboard is not this way of working.  It takes the first letter that corresponds to a number, I think I've hit.  The phone that I can find in the office that works is a Razr, that mimics a real phone with the 3 letters/key keyboard of course.

    I hope that there is an easy solution for this.

    Thank you

    J

    Press # when it says press the button #.

    Spell a name, say 'SMITH', press on and hold down the ALT key (lower left) while typing the letters you need.

  • When typing, the cursor jumps around

    while I type fast jumps everywhere and I find myself typing the letters in the words previously seized... What do I do to fix this?

    Hello

    There are some good suggestions in the following thread:

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_vista-performance/cursor-jumps-while-typing/9de98945-525a-45fe-a74c-741fb42d2069

  • A few letters on the keyboard, when typed, display numbers instead.

    What switch have I accidentally toggled when you press on, the letter m, j, k, l, numbers show, i.e. 0, 1, 2, 3, 4 etc. instead letters?  I use Windows Vista Home Basic on a Gateway laptop.

    Hello pud123,

    You have activated the function of digital lock on your keyboard. Find the NumLck key on your keyboard. It is normally on the top row of keys or above the number pad. Press Fn (function) and NumLck at the same time. Who's going to turn off the numLock setting. It may be different combinations of keys on the different computer manufacturer. Dell is usually Fn + F4, Compaq is Fn + scroll stop. Each manufacturer can use another set of keys
    combination, then you will need to check with your computer manufacturer.

    I hope this helps.

    Sincerely,

    Marilyn
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • keyboard is typing numbers instead of letters when I play a video game on my PC

    Original Ttile:keyboard is typing numbers instead of letters

    I recently had problems and it only happens when I play a video game on my PC, I run the video game, I want to change my control panel EX: 'I want to change the market toward the front of the button up to W'. When I press W it turns into a number, I press again and turns into a different number, I don't know how this happened, but it happened as a day or two before, can someone please help me solve this problem?, oh and it's a step a portable office.

    If you have recently installed the thing on security of comcast, try disabling it.
    It tends to ruin the keys during the game.

  • My keyboard is write the numbers instead of letters

    MY keyboard is write the numbers instead of letters. The firstbletterbiscok, but it converts every letter in a number

    It's very strange. Try contacting Apple Care phone number: (800) 275-2273

  • HP15-f272wm: keyboard not to pick up the letters typed

    Newly purchased refurbished HP computer problems. I corrected cursor bouncing by changing the setting for her. But keyboard types about three letters and then does not. How can I fix it?

    I unchecked turning on box filter keys and adjusted response time and now it works. Thanks for showing where to adjust them.

Maybe you are looking for

  • El Capitan 10.11.4 entry source cmd + space doesn't work

    Hello! The shortcut does not work, I uncheck the same shortcuts in the spotlight menu, but nothing happens (thanks.

  • S 4530 HP recovery partition

    I just bought a Hp Probook s 4530. There were 3 partitions. Two of them were recovering C: and hp. I wanted to make more partitions, so I shrunk the size of C with software and making a new partition. But somehow that changed the recovery partition h

  • LabVIEW 8.6 works with DDE?

    I think that it should be dismantled and replaced by the mutual fund. Can you always dde in Labview? Stu

  • Lack of CD/DVD drive

    Original title: CD/DVD problems I have a samsung pc that works fine, but now it tells me that the TSSTcorp CDDVDW TS-L633C is missing, can someone tell me how to re - install it please, Erica.

  • Name email problem

    All I want to do is change my name on my email of Richo Richo to Luke Richardson. How to do this if I can't access my profile page? The e-mail system that I use is windows live.