My keyboard goes on caps lock without pressing the button and change everythings, numbers and etc. What should I do?

I was using my keyboard normally, suddenly I was typing and it was all in caps lock and I havent pushed the button for that. I really dont know what to do. Every time this happens, I turn off and turn it on again. Help!
What should I do?
Thanks

No I dont have it. Should I go look for it?

Similar Messages

  • IPhone 5 screen locking without pressing the lock button

    Recently my iPhone screen has started locking without pressing the button. It is like it is stuck but the button isn't even pushed down. It does it so often that it is hard to use my phone because it keeps locking the screen and then trying to turn off the phone. It wasn't so bad at first and I used the accessibility feature to lock my screen in case something was wrong with button. However, my friend was looking at my phone and pressed the lock button which made it start going crazy again. I can't turn my phone off either because it will automatically turn back on because the button is going off. It is almost like there is a ghost pressing my lock button constantly. That is the best way to describe it. I'm not sure if I am under warranty or not, I got the phone from Sprint in the beginning of June.

    Make an appointment at the genius bar and have it looked at. It sounds like the power button is failing.

  • So I have an iPad with the smart cover, and it's usually supposed to turn on the iPad when u open it, but it's no doing that for me. Nor is it turning off without pressing the button. What is the meaning of this?

    So I have an iPad with the smart cover, and it's usually supposed to turn on and off the iPad when u open it and close it, but it's not turning on for me. Nor is it turning off without pressing the button. What is the meaning of this?what caused it to be this way? Is there someway that I could fix it?

    Wait a sec did this just start?
    You set up the smart cover function in settings (you did that, right?) so, if you did that and it's failed you make an appointment at your nearest Genius Bar now.

  • How to when press the button and can change the value in the table?

    this is my code so far with a table and a button..how can i make it when press the button and the data in table change..
    * SimpleTableDemo.java is a 1.4 application that requires no other files.
    import java.awt.BorderLayout;
    import java.awt.Button;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    public class SimpleTableDemo extends JPanel {
    private boolean DEBUG = false;
    private JPanel button;
    private JButton enter;
    public SimpleTableDemo() {
    super(new BorderLayout());
    //button.setBackground(Color.pink);
    //setForeground(Color.pink);
    String[] columnNames = {"First Name",
    "Last Name",
    "Sport",
    "# of Years",
    "Vegetarian"};
    Object[][] data = {
    {"Mary", "Campione",
    "Snowboarding", new Integer(5), new Boolean(false)},
    {"Alison", "Huml",
    "Rowing", new Integer(3), new Boolean(true)},
    {"Kathy", "Walrath",
    "Knitting", new Integer(2), new Boolean(false)},
    {"Sharon", "Zakhour",
    "Speed reading", new Integer(20), new Boolean(true)},
    {"Philip", "Milne",
    "Pool", new Integer(10), new Boolean(false)}
    final JTable table = new JTable(data, columnNames);
    table.setPreferredScrollableViewportSize(new Dimension(500, 70));
    if (DEBUG) {
    table.addMouseListener(new MouseAdapter() {
    public void mouseClicked(MouseEvent e) {
    printDebugData(table);
    //Create the scroll pane and add the table to it.
    JScrollPane scrollPane = new JScrollPane(table);
    enter = new JButton("Press me");
    //Add the scroll pane to this panel.
    buildButton();
    add(scrollPane, BorderLayout.NORTH);
    add(button, BorderLayout.CENTER);
    private void buildButton(){
    button = new JPanel();
    button.add(enter);
    private void printDebugData(JTable table) {
    int numRows = table.getRowCount();
    int numCols = table.getColumnCount();
    javax.swing.table.TableModel model = table.getModel();
    System.out.println("Value of data: ");
    for (int i=0; i < numRows; i++) {
    System.out.print(" row " + i + ":");
    for (int j=0; j < numCols; j++) {
    System.out.print(" " + model.getValueAt(i, j));
    System.out.println();
    System.out.println("--------------------------");
    * Create the GUI and show it. For thread safety,
    * this method should be invoked from the
    * event-dispatching thread.
    private static void createAndShowGUI() {
    //Make sure we have nice window decorations.
    JFrame.setDefaultLookAndFeelDecorated(true);
    //Create and set up the window.
    JFrame frame = new JFrame("SimpleTableDemo");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //Create and set up the content pane.
    SimpleTableDemo newContentPane = new SimpleTableDemo();
    newContentPane.setOpaque(true); //content panes must be opaque
    frame.setContentPane(newContentPane);
    //Display the window.
    frame.pack();
    frame.setVisible(true);
    public static void main(String[] args) {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    }

    Cross-post:
    http://forum.java.sun.com/thread.jspa?threadID=676105

  • My ipod power button wont work but i feel it pressing the button. its not stuck its just defective. what do i do

    my ipod power button wont work but i feel it pressing the button. its not stuck its just defective. what do i do

    Try restoring the iPod to rule out a software problem. First restore from backup and then to factory defaults/new iPod.
    Then an appointment at the Genius Bar of an Apple store is in order.

  • How to keep the watch to display without press the button on my iPod Nano 6th)?

    Dear Guys,
    I have purchased a watchband for my ipod nano 6th recently, overall is okay but i don't know how to keep the watch to display without pressing the sleep/resume button on edge? Also, the screen is not showing the watch immeditaly when I press the button, it shows the music/cd folder, then I need to scroll the screen back to the watch display.  Please help.

    There is no way to keep the display on permanently, as doing so would significantly reduce the overall life of the battery.  It would maybe last only hour, maybe not even.
    As for having your iPod wake up to the watch view, head to Settings -> General -> Time on Wake -> On.
    B-rock

  • How to detect Caps Lock without pressing any keys

    I am trying to make the password login and would like add this feature to my website and don't know how to do it.
    I wrote the code below to detect the Caps Lock but it couldn't detect the cap lock at start up.
    if(flash.ui.Keyboard.capsLock){trace("CAP WAS ON")}else{trace("CAP WAS OFF");};
    The result for this code is always return "false" unless I put this code in the eventlistener and have to press the keyboard

    you must wait a moment for your stage to initialize.  use a delay of 1ms or so to check for caplock.

  • My iPhone 4S keeps losing connection and turning off, and i am unable to turn it back on again without the charger, but it turns on when i press the button and regains signal fine once i return home?

    Hi
    I have recently bought a white iPhone 4S on Tuesday, and it has been repeatedly loosing all connection and just suddenly switching off.
    When this happens I am unable to turn the phone back on again without a power source plugged into it. When I try to remove the phone from the power source it goes completely dead again.
    However, the most recent time this has happened (today), as soon as I returned home the phone had no problem starting up as normal when I pressed the power button.
    The signal was working fine even though it says 'searching' in the left hand top corner of the screen. I am wondering if my WIFI at home is influencing the phone to work inside the household?
    This is a problem that needs to be sorted out ASAP because the phone is not working the majority of the time when I need it to.
    Please if you have any suggestions or know the cause of this problem inform me straight away.
    Would be much appreciated.
    Thank you.

    Try connecting it to your iTunes library in Recovery Mode and restoring it.  See this article for help on getting your iPod into Recovery Mode.
    http://support.apple.com/kb/ht1808
    B-rock

  • TS1365 Power on MBP without pressing the button

    Most modern laptops turn on without having to press the power button (needs a bios setup tweaking e.g. power on laptop when lid is open). Does new MBP have similar options? Power button is working fine (no problem with it), but would be nice to have it powered on when lid is open. Thanks!

    No, not that I'm aware of.

  • My ipod acts as though someone is invisibly pressing the button and starts jumping to different screens without user input any help out there

    my ipod touch acts as though someone is invisbly ushing the buttons or moves from screen to screen without usere input

    Try the standard fixes to rule out a software problem:
    - Reset. Nothing wll be lost
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup
    - Restore to factory defaults/newiPod
    If still problem you have a hardware problem and service is necessary.

  • I am trying to download 10.7 I press the button and it does nothing, I have just updated my iphone but I can't do anything until the itunes is updated

    I am trying to install the latest version of itunes, I press the download button and nothing happens.  when I connect my iphone it says I cannot do anything with itunes on my phone until the lates version is installed. HELP!!!

    I'd first try downloading an installer from the Apple website using a different web browser:
    http://www.apple.com/itunes/download/
    If you use Firefox instead of IE for the download (or vice versa), do you get a working installer?

  • How come the volume on my ipod touch is turning up when im not pressing any buttons? any time i turn it down it always goes back up like im pressing the button!

    did something get stuck in the button?

    i think i just need a new ipod. ive tried even turning up the volume and the button isnt responding. something is wrong with the button. there is also some minor damage inside the ipod i think as well, but im pretty sure my warrenty is up because ive had this ipod for so long. will i be able to send my ipod back into apple and get a new one?

  • TS4079 Siri is not recognizing any sound at all, what should I do? I press the button and Siri pops-up but it doesn't recognize any command at all actually no sound is displayed like happening on the equalizer, but the speaker works fine

    No responsive siri

    I figured it out myself. Go into the top right menu in the playback plugin and choose "Start with play action". ****! So simple!

  • My iphone 4 has a blank screen i can still press the buttons just cant see anything? Restoring it doesn't work.

    My iphone 4 has a blank screen, it is on and i can press the buttons and hear the sounds but i cannot see anythign on the screen. The bettery is fine and I have tried restoring it a couple of times. 
    I upgraded my software yesterday but can't remember what to (what ever is the latest varsion).

    You may have a bad screen or a loose connection in your phone.  Make an appointment to have an Apple Retail Store Genius look at your phone. http://www.apple.com/retail/geniusbar/
    Or call U.S. iPhone technical support: 1-800-MY-IPHONE (1-800-694-7466) or the number for your country found here:  http://www.apple.com/support/contact/phone_contacts.html

  • MacBook Pro - CAP's Locked without Pressing CAP's Lock or Shift - Why?

    MacBook Pro - CAP's Locked without Pressing CAP's Lock or Shift - Why?

    That is what I thought, but not what I wanted to learn ....
    Thank you for your advice !

Maybe you are looking for

  • TNS Name issue while installing the Peoplesoft 9.1 and peopletools 8.52

    Hi All, I have been installing the peoplesoft 9.1, tools 8.52, OS: Windows 7, 64-bit, oracle 11g release 2. I have been following the installation guide given by Peoplesoft. So far so good. but i am having problem at TASK 6A-14. It is asking me to lo

  • 13" MacBook Pro with Retina 256gb SSD and 16gb ram?

    So I have decided to go with a 13" MacBook Pro with Retina. I am now deciding on how to customize it... My uses are: Primary -> Writing. I am an aspiring writer/ future published author, and this unit will serve as a primary storage unit for on-the-g

  • Need info on New Gl for a fresh implememtation

    Hello,     Kindly give your inputs on the new gl functionality for a fresh implementation. Please provide some documentation or pros and cons of it. This is the senario, only one plant is being implemented for the time being, what is the possiblity o

  • Need color printing on 11 x 17 paper

    What are my options? the user needs to print on 11 x 17 inch paper, which narrows down the solutions... I found an OJ Pro K8600 ($500) and an InkJet 2900 dtn ($1K). This is for a network environment. I'd rather a laserjet solution, but the cost is so

  • HRFORMS : How Can Country Specific MetaStar Be Created

    Hi Experts I would like to find out how can Country Specific Metastars be created. For example, in standard SAP HRFORM for China (Country Grp 28 HR Form Name SAP_PAYSLIP_CN), there exist a Meta Star EMP_CNAME_CN with associated MetaDimensions DATE_RA