Centro Keyboard Lock / Failure

Hello,
I have a Palm Centro (AT&T) that I have been using for about 2 years now. The other day, the keypad just sporadically stopped responding after more than one input (for example, I can hit any of the keys once and they will respond, but not again after being hit once).  In addition, the large buttons (phone, applications, calendar, messages), green call button, and navigation buttons will not respond at all.  However, the power button and center key will respond in order to bring the phone out of the power-save mode, but not respond in any other circumstance (aka cannot turn the 'phone' off).  The touchscreen still works though.
I've performed a soft reset, but I cannot perform a hard reset as the phone does not seem to recognize me releasing the power key at the second palm logo (it freezes though if I had been holding the key down, again, it seems to recognize the key press only once).
Does anyone have any ideas as to what I could do to remedy this?  I'd like to make sure it's not something I could solve with a reset (if I could get one to work) or some other software fix.
Post relates to: Centro (AT&T)

Hello and thank you for using the Palm Help Forums!
If the device will let you, perform a warm reset. It's similar to the hard reset except you hold the Up button on the 5 way navigator. This is going to put the device into a safe mode and just load the applications necessary for the device to run. See if the buttons are working then. If so, soft reset the device and see if the problem still occurs. If the problem still occurs in a warm reset I recommend replacement.
If it does work (in warm reset) and you soft reset the device then the problem occurs again, then I would warm reset the device and while in warm reset perform a hard reset.
I hope these tips help,
-Pat

Similar Messages

  • Keyboard+XOrg failure?

    I was just reading the Con Kolivas thread, and this announcement on the LKML.
    He references a Keyboard+XOrg failure which is 'well-known', any information about that? I've been using custom kernels, and once in a while (normally with a <Super>equal which I have binded to my 'increase volume' with mpd) I manage to have my system hardlock, only recoverable (and sometimes not even) with the magic SysRQ. Didn't think much of it, since it happens quite rarely and I compile my kernels with various options all the time.
    So, anyone has experienced this or read about it? I'm obviously not on the LKML (so many emails...)

    You're not dumb — many others have made the same trivial mistake and been completely unaware of the Num Lock function, including me a while back.

  • Keyboard-lock of swing program on Linux box

    We are developing swing program on Linux, and we often meet keyboard-lock issues.
    I try to simplify some of them to small programs, and still meet keyboard-lock.
    Here I post two programs to show the error:
    //---first ----------------------------------------------
    package test;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    public class KeyLock extends JFrame {
      JPanel contentPanel = new JPanel();
      JPanel wizardToolPan = new JPanel();
      JButton btnBack = new JButton("Back");
      JButton btnNext = new JButton("Next");
      JButton btnAbout = new JButton("About");
      public static final String aboutMsg =
              "<html>  This program will help to find keyboard lock problems, two way to reproduce:<br><br>" +
              "1 - press Alt+N to navigate next, and don't release keys untill there are no more next page, <br>" +
              "then try Alt+B to navigate back and also don't release keys untill page 0,<br>" +
              "repeat Alt+N and Alt+B again and again, keyboard will be locked during navigating. <br><br>" +
              "2 - press Alt+A in main window, it will popup an about dialog,<br>" +
              "then press down space key and don't release, <br>" +
              "the about dialog will be closed and opened again and again,<br>" +
              "keyboard will be locked sooner or later." +
              "</html>";
      public KeyLock() {
        this.setDefaultCloseOperation(EXIT_ON_CLOSE);
        this.setTitle("Keyboard lock test");
        getContentPane().setLayout(new BorderLayout());
        btnBack.setMnemonic('B');
        btnBack.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            KeyLock.this.goBack(e);
        btnNext.setMnemonic('N');
        btnNext.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            KeyLock.this.goNext(e);
        btnAbout.setMnemonic('A');
        btnAbout.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            JOptionPane.showMessageDialog(KeyLock.this, aboutMsg, "About", JOptionPane.INFORMATION_MESSAGE);
        contentPanel.setLayout(new BorderLayout());
        contentPanel.setPreferredSize(new Dimension(400, 250));
        contentPanel.setMinimumSize(new Dimension(400, 250));
        wizardToolPan.setLayout(new FlowLayout());
        wizardToolPan.add(btnBack);
        wizardToolPan.add(btnNext);
        wizardToolPan.add(btnAbout);
        this.getContentPane().add(contentPanel, java.awt.BorderLayout.CENTER);
        this.getContentPane().add(wizardToolPan, java.awt.BorderLayout.SOUTH);
        this.setSize(400, 300);
        this.createContentPanels();
        this.showCurrent();
      private Vector<JPanel> slides = new Vector<JPanel>();
      private int current = 0;
      private void createContentPanels() {
        for (int j = 0; j < 20; ++j) {
          JPanel p = new JPanel(new FlowLayout());
          p.add(new JLabel("Page: " + j));
          p.add(new JTextField("Page: " + j + ", input something here", 20));
          p.add(new JTextField("Page: " + j + ", input something here", 20));
          p.add(new JTextField("Page: " + j + ", input something here", 20));
          p.add(new JLabel("Input something in password box:"));
          p.add(new JPasswordField(20));
          p.add(new JCheckBox("Try click here, focus will be here."));
          p.add(new JRadioButton("Try click here, focus will be here."));
          slides.add(p);
      public void showCurrent() {
        if (current < 0 || current >= slides.size())
          return;
        JPanel p = slides.get(current);
        this.contentPanel.add(p, java.awt.BorderLayout.CENTER);
        this.pack();
        Component[] comps = p.getComponents();
        if (comps.length > 0) {
          comps[0].requestFocus(); // try delete this line
        this.repaint();
      public void goNext(ActionEvent e) {
        if (current + 1 >= slides.size())
          return;
        this.contentPanel.remove(slides.get(current));
        current++;
        sleep(100);
        this.showCurrent();
      public void goBack(ActionEvent e) {
        if (current <= 0)
          return;
        this.contentPanel.remove(slides.get(current));
        current--;
        sleep(100);
        this.showCurrent();
      public static void sleep(int millis) {
        try {
          Thread.sleep(millis);
        } catch (Exception e) {
          e.printStackTrace();
      public static void main(String[] args) {
        KeyLock wizard = new KeyLock();
        wizard.setVisible(true);
    }The first program will lead to keyboard-lock in RHEL 4 and red flag 5, both J2SE 5 and 6.
    //---second -----------------------------------------
    package test;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class KeyFocusLost extends JFrame {
      private JButton btnPopup = new JButton();
      private JTextField jTextField1 = new JTextField();
      private JPasswordField jPasswordField1 = new JPasswordField();
      private JPanel jPanel1 = new JPanel();
      private JScrollPane jScrollPane3 = new JScrollPane();
      private JTree jTree1 = new JTree();
      private JButton btnAbout = new JButton("About");
      public static final String aboutMsg =
              "<html>  This program is used to find keyboard focus lost problem.<br>" +
              "Click 'popup' button in main window, or select any node in the tree and press F6,<br>" +
              "a dialog popup, and click ok button in the dialog,<br>" +
              "keyboard focus will lost in main window." +
              "</html>";
      public KeyFocusLost() {
        this.setDefaultCloseOperation(EXIT_ON_CLOSE);
        this.setTitle("Keyboard focus test");
        getContentPane().setLayout(null);
        btnPopup.setBounds(new Rectangle(33, 482, 200, 35));
        btnPopup.setMnemonic('P');
        btnPopup.setText("Popup and lost focus");
        btnPopup.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            PopupDialog dlg = new PopupDialog(KeyFocusLost.this);
            dlg.setVisible(true);
        btnAbout.setBounds(new Rectangle(250, 482, 100, 35));
        btnAbout.setMnemonic('A');
        btnAbout.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            JOptionPane.showMessageDialog(KeyFocusLost.this, aboutMsg, "About", JOptionPane.INFORMATION_MESSAGE);
        jTextField1.setText("Try input here, and try input in password box below");
        jTextField1.setBounds(new Rectangle(14, 44, 319, 29));
        jPasswordField1.setBounds(new Rectangle(14, 96, 319, 29));
        jPanel1.setBounds(new Rectangle(14, 158, 287, 291));
        jPanel1.setLayout(new BorderLayout());
        jPanel1.add(new JLabel("Select any node in the tree and press F6."), java.awt.BorderLayout.NORTH);
        jPanel1.add(jScrollPane3, java.awt.BorderLayout.CENTER);
        jScrollPane3.getViewport().add(jTree1);
        Object actionKey = "popup";
        jTree1.getInputMap().put(KeyStroke.getKeyStroke(KeyEvent.VK_F6, 0), actionKey);
        jTree1.getActionMap().put(actionKey, new AbstractAction() {
          public void actionPerformed(ActionEvent e) {
            PopupDialog dlg = new PopupDialog(KeyFocusLost.this);
            dlg.setVisible(true);
        this.getContentPane().add(jTextField1);
        this.getContentPane().add(jPasswordField1);
        this.getContentPane().add(jPanel1);
        this.getContentPane().add(btnPopup);
        this.getContentPane().add(btnAbout);
      public static void main(String[] args) {
        KeyFocusLost keytest = new KeyFocusLost();
        keytest.setSize(400, 600);
        keytest.setVisible(true);
      static class PopupDialog extends JDialog {
        private JButton btnOk = new JButton();
        public PopupDialog(Frame owner) {
          super(owner, "popup dialog", true);
          setDefaultCloseOperation(DISPOSE_ON_CLOSE);
          this.getContentPane().setLayout(null);
          btnOk.setBounds(new Rectangle(100, 100, 200, 25));
          btnOk.setMnemonic('O');
          btnOk.setText("OK, then focus lost");
          btnOk.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
              PopupDialog.this.getOwner().toFront();
              try {
                Thread.sleep(100); // try delete this line !!!
              } catch (Exception ex) {
                ex.printStackTrace();
              PopupDialog.this.dispose();
          this.getContentPane().add(btnOk);
          this.getRootPane().setDefaultButton(btnOk);
          this.setSize(400, 300);
    }The second program will lead to keyboard-focus-lost in RHEL 3/4 and red flag 4/5, J2SE 5, not in J2SE 6.
    And I also tried java demo program "SwingSet2" in red flag 5, met keyboard-lock too.
    I guess it should be some kind of incompatibleness of J2SE with some Linux platform. Isn't it?
    Please help, thanks.

    Hi.
    I have same problems on Ubuntu with Java 6 (all versions). I would like to use NetBeans or IntelliJ IDEA but it is not possible due to keyboard locks.
    I posted this bug
    https://bugs.launchpad.net/ubuntu/+bug/174281
    before I found some info about it:
    http://forums.java.net/jive/thread.jspa?messageID=189281
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6506617
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6568693
    I don't know from which part this bug comes, but I wonder why it isn't fixed yet. Does anybody else use NetBeans or IntelliJ IDEA on linux with Java 6 ?
    (I cannot insert link :\ )

  • How can I make a "Keyboard Lock" while iTunes is playing?

    How can I make a "Keyboard Lock" while iTunes or other apps are playing? They should work/play on, screen should still be on, only keyboard is (maybe Password-) locked.
    Thanx in adv, tttimo

    Menu > Apple > System Preferences > Keyboard > Keyboard Shortcuts Application Shortcuts > + > Application: Browse to Pages > Menu Title: Footnote > Keyboard Shortcut: hit combination of keys > Add
    You will need to restart Pages but should then see it next to your Menu item.
    Peter

  • Keyboard lock and unlock for 8330

    I need a way to lock and unlock the keyboard.  I have searched a number of websites for an answer to my dilema and it seems several methods are mentioned but none work for me.  I need to lock the keyboard when phone is in my pocket.  Many thanks to anyone who can help.

    Well, according to your device manual, this is the procedure:
    Lock the keyboard
    If you do not set a BlackBerry® device password, you can lock your keyboard to avoid making calls and pressing keys accidentally.
    On the Home screen or in the application list, click Keyboard Lock.
    To unlock the keyboard, press the asterisk (*) key and the Send key.
    You can look further into your manual here:
    http://www.blackberry.com/btsc/microsites/search.do?cmd=displayKC&docType=kc&externalId=http--docsbl...
    Good luck.
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Need Help! Blackberry 8300 Keyboard Locked-up

    Need Help!  Blackberry 8300 keyboard locked-up.  Trackball can scroll but cannot activate programs. Cannot use keys to answer phone, activate programs, etc.  I have taken battery out to reboot/reset but no luck.  Any help/suggestions would be greatly appreciated.  Thanks! 

    What version of iTunes is on the computer?
    You may need iTunes 10.5 or later. That requires OSX 10.5.8 or later.
    You will also have to place the iPod in Recovery mode in order to allow you to restore the iPod.
    iOS: Wrong passcode results in red disabled screen

  • E72 - How can i turn off the keyboard lock functio...

    How can I turn off the keyboard lock function?  If I don't want it to auto lock after 5 mins but stay active, can I turn the auto lock off completely?  I've checked Control Panel - Settings - General - Security - Phone and SIM Card and there appears to the the option, but when you try and select 'off' it doesn't allow you to turn it off.... Help?
    Solved!
    Go to Solution.

    "it is there my frend., go to Menu - Control Panel - Settings -  General - Security - Phone and Sim Card
    then scroll down and select keypad auto lock period"
    Got it from...
    /t5/Eseries-and-Communicators/E72-shortcut-key-key​pad-lock/m-p/572418 bout halfway down. I know I had a google need to find this answer.
    Samsung Galaxy S4 'Black' (current)
    My N9 Black (backup phone)
    My N8 Green runnin Xeon^4 3.2.1
    My E72 White
    My E63 BLUE
    http://www.youtube.com/Jeahavee
    http://www.reverbnation.com/jeahavee
    Stop with the popup notes Nokia sheesh I don't need help from you :/
    I run Windows 7 Home Premium 64bit/Black Opal on my HP Dv6 1030us (DiViUs)
    Windows 7 64 bit Pro and Black Opal on my custom desktop (Giniro)

  • BPS keyboard lock issues

    Hi all,
    I've various layouts for forecasting.I execute the planning folder to enter forecasting values.
    My problem is -
    Sometimes when I log into the screen(after executing the plng folder) for the first time, the keyboard locks and you have to click on the check button to enable it. Can this be solved?
    Any help will be appreciated.
    Thanks in advance.
    Isha

    Hi,
    This has happen to me very often...if you execute planning folders with excel as the front end.
    The keyboard is not locked but even if a cell is selected and you enter digits...they just don't appear. Surprisingly, digits entered become part of the excel macros. When you press refresh the macro debugger gets started as the code (with the digits just added) is wrong. It's a nightmare.
    This does not happen in all our computers. If you select a cell by double clicking over it...the system works fine.
    Yes, strange but true.
    Alberto Sabate

  • Keyboard locked and frozen

    hi.
    since i installed arch64 on my new machine,  my keyboard randomly froze and i can't type anything with it anymore. I had everytime to log out from X. and then i can use it again.
    when it is locked even typing a key like capslock or numlock do not change the led on the keyboard
    so though i first thought it was an hardware problem with the usb dell keyboard, i think now it has to do with kde or X.
    anyone ?
    i have changed the line
    Option "XkbModel"    "dell"
    in my xorg.conf to:
    Option "XkbModel"    "pc105"
    but i still got that problem.
    it seems to happen when i want to type too fast and type 2 or 3 keys at the same time with a ctrl or alt or altgr or win key. don't know

    Am using:
    64-bit AMD
    32-bit Arch kernel and other packages
    nVidia
    xorg
    kde
    On-board video is: nVidia Corporation: GeForce 6100 nForce 405
    All software (kernel, drivers, etc.) are up to date.  Yet, another lockup happened about 30 minutes ago.
    When the keyboard locks up, it feels like it's locked up, but has not.  If I hold down any character long enough, it comes through.  Same goes for modifier keys.   So, to do Shift-A, have to hold down the Shift key for about two seconds, then hold down the A key for two seconds.  Typing a password is excruciating -- OK, really, impossible.
    Since the mouse consistently works, I can kill applications and then K->Log Out...->End Session OR start a new session.  When the X login appears, all is well.
    If I start a new session, the keyboard works just fine in the new session.  If I return to the original session (Ctrl-Alt-F7), the keyboard is still locked up in that session.  Go figure.
    Seems like all reports about this mention keyboard locking up.  Can anyone try this next time?  Hold a key down and see if in a few seconds it comes through.  Would be interesting to see how many cases there re of complete lock up vs just a super slow keyboard response.  (And who knows.  This info. might even help someone find the root cause.)
    EDIT: To try to fix this problem have tried various mouse and keyboard brands.  Have tried unplugging and plugging back in the keyboard and mouse several times (right after a lock up).  Have also tried to avoid various applications -- just in case it's related to user space interaction (getting desperate, I guess).  The problem persists.  It's very random, too.
    Last edited by soloport (2007-12-02 03:35:34)

  • IOS7 on iPad mini. Now my keyboard locks up and won't type. Any ideas or help?

    IOS7 on iPad mini and now keyboard locks up and won't type. Any help here?

    thanks for the reply, brian, but unfortunately that is what i meant by the hard reboot.  i've done that many, many times and it's still stuck.  nothing is helping and i can't even get it to sync to iTunes to restore it.
    thanks anyway!

  • Video/Audio Lock Failure Error Message

    Every time I try to watch a show or a movie On Demand the screen goes black.  Then a few moments later I receive an error message stating: " Video/Audio Lock Failure." Does anybody know how to fix this?

    I just upgraded to FCEHD 3.0 from FCE 1.01. I was in the middle of capturing clips on a large project when I made the move (today). I got this same message and just found this answer -- thank you very much.
    Should I go back and recapture all the clips that I did in FCE? I did not get the error message, but I have no idea what the settings were, either.
    BTW: I am using a Sony PDX-10. Why would a professional camera be set up in 32K audio?

  • Software 5 update problem with keyboard lock key

    I just downloaded the software update v5 and when it was all done my keyboard lock key stopped working, has anybody else had this problem? any solutions other than a downgrade?

    I also have this problem after installing version 5.0.0.508. It appears that I no longer have an option for locking the keyboard. When I select Options/Screen/Keyboard and select Left Side Convienence Key Options it does not show up in the list of selectable options.

  • Password lock verses keyboard lock

    Help! I have a password set up to come on after 10 min. to lock my phone and now somehow when I press the lock key(a) my screen goes blank and it just locks the keyboard.  What needs changed so that I can lock my phone using the a key again?  I don't know how the keyboard lock even got turned on.  Thanks!
    Solved!
    Go to Solution.

    Try this KB.
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Keyboard lock on word lookup

    It seems upon the new update, whenever I lookup a word (e.g. on Pages) the keyboard locks and I must restart the computer in order to restore keyboard functionality. Is this occurring for everybody on the latest update (10.10.3)? It is extremely bothersome and I hope it gets resolved ASAP!

    I have also been running into this
    since the last upgrade on OS X Yosemite. After eight clicking and attempting a word lookup the lookup returns blank and they keyboard become unresponsive. This will continue until the Mac is rebooted. I am running a 13mbr 2014.

  • Keyboard Lock help

    It's a little thing... however... I recently got a Curve 8900, and I can only lock/unlock it by pressing the top button.  On my brother's Curve... he's able to lock/unlock by pressing A+Send.  For the life of me I can't figure out how to get mine to do the same thing.  I went to the "Tips and Tricks" section for my phone, and it actually says that the A+Send option is the standard way to lock/unlock.  Now I'm confused.... Please help.

    michelleloraine wrote:
     The keyboard lock's missing. Is it part of all the changes?
    Yes, it is.
    You can set a password on the device, and the lock icon will return.
    Or, you can use the K key to press to lock the device if your Call Log > Options > Dial for Homescreen >  set to no.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • How can I make an email signature with html

    I want to do what the question asks. When I put in the html it shows the code and not the links. Any help is greatly appreciated. Thanks

  • Can I Use My SmartPhone App to Print When the Printer is Wired?

    Hello-- I just bought the HP LaserJet Pro 100 color MFP M175nw for my home and have it networked via a wired connection. I think I know the answer to this, but just want to double check. I believe the printer has to be connected to my wireless networ

  • Why MLB.TV is not appearing after the last update?

    why MLB.TV is not appearing after the last update?

  • SAP router IP address

    i am confused with what should be my SAP router Machine IP. my WAN IP is 115.186.139.38 the Live IP pool or public IP address which i have purchased from by ISP: 115.186.151.200/30 115.186.151.201 115.186.151.202 115.186.151.203 and the machince on w

  • IDOC in Test Mode

    Hi, I am  using CREMAS I am submiting program  rbdapp01 to post the IDCOS Now I want to run in TEST MODE (simulation run) , not to create any vendors , but it should give success and error messages as usual I had found one TEST Flag on selection scre