My I pad won't charge for some reason

My I pad won't charge I've plugged it into both wall and computer the battery symbol won't even come up it just stays blank and I no I didn't break it

Which model? The original iPad?
Have you tried another cable/connector? Another power adapter? Don't use the computer at all to charge it. That is the least effective way to charge the battery.
Try resetting your iPad and see if that helps.
Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

Similar Messages

  • Can't create new pdfs from powerpoint; either form within Adobe or within powerpoint.  I could do this yesterday and today it won't work for some reason.  The error says "an unexpected error occurred.  PDFMaker was unable to produce the Adobe PDF.  How do

    Can't create new pdfs from powerpoint; either form within Adobe or within powerpoint.  I could do this yesterday and today it won't work for some reason.  The error says "an unexpected error occurred.  PDFMaker was unable to produce the Adobe PDF.  How do I fix this?

    Is there a log file in the document folder indicating what the problem was. There are a number of reasons that PDF creation may fail. You can try to print to the Adobe PDF printer to see if there is any indication in that process. The processing is different, but the same problems may show up with both processes.

  • My ipad mini isn't charging for some reason what do i do?

    My ipad mini isn't charging for some reason. What do I do?

    Are you using the wall charger? Connecting to the USB port on your computer gets the Not Charging message.
    Need more info about your problem.
     Cheers, Tom

  • Pse 13 for mac- Is there a digital download after you buy it disc won't read for some reason. using macbookpro.

    I bought the PSE 13 disc and put it in my laptop( macbookpro) and for some reason it won't read… all it does is run and then spit the disc out not sure what to do. Is there maybe a digital download since there is no customer service number to call…

    Download the trial version, install then enter your serial number
    http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements

  • ITunes won't run for some reason... help me!!!

    I installed iTunes on my laptop in December 2005 (I got an iPod nano for Christmas). Recently, my laptop started making a funny clicking noise and, as the Best Buy guy said, "Your hard drive is shot." So, therefore, I have not been able to charge my iPod. I downloaded the updates for iPod on this desktop computer, but for some reason, iTunes wont show up. Do I have to download the software again? How do I get it working?? Please help me!!!
    eMachines   Windows 2000  

    for some reason, iTunes wont show up
    a few questions before proceeding.
    are you getting an error message? if so, what does it say? include error message numbers if you're getting any.
    or are you getting no error messages whatsoever when you try to launch itunes?
    if you're getting no error messages whatsoever, do you just see the wee hourglass for a few seconds, and then nothing? if so, do you also have Norton Internet Security 2005 installed on that PC?
    or are you seeing a brief "flash" of the itunes license screen (and then nothing)? if so, do you also see similar behavior when you try to launch your QuickTime?

  • This program won't work for some reason

    I'm having trouble with getting this program to do what I want. It reads in a file and identifies certain parts that follow the rules I've given. The first version below is one that works. It simply prints out the string if it meets the conditions in the if statements. The second one will compile but shows no data. I know it stores the values in the arrays sortstem and sortdg becuase I put the println statement directly after the code for storing them and it worked. However, when I put it where it is now, it will not work. Any suggestions? Also, I get an error after the program runs for both versions: It says exception in thread "main" Java.lang.NullPointerException at tokens.main(tokens.java.69) (this was for the first program).
    import java.io.*;
    import java.util.*;
    class tokens {
         public static void main(String args[]) throws IOException {
              int i;                                                       //int to read in the data from the text file
              int count = -1;
              int countt = -1;
              int countc = 0;                                                  //int to put data into a char array
              FileInputStream fin;                                             //input stream
              char array[] = new char[10000];                                        //array to hold chars from the text file
              String s;                                                  //chars are transfered to this String
              int index;                                                  //index of the names I'm searching for in the string
              String tokens[] = new String[10000];                    
              try {
                   fin = new FileInputStream(args[0]);
              } catch (FileNotFoundException e) {
                   System.out.println("File not Found");
                   return;
              } catch (ArrayIndexOutOfBoundsException e) {
                   System.out.println("Usage: ShowFile File");
                   return;
              do {
                   i = fin.read();
                   if (i != -1) {
                        if (count==array.length-1) {                              //this expands the array if more space is needed
                             char temp[] = new char[array.length+5000];
                             for (int j = 0; j < array.length; j++) temp[j] = array[j];
                             array = temp;
                             array[++count] = (char) i;
                        else
                             array[++count] = (char) i;                         
              } while(i != -1);
              fin.close();
              s = new String(array);
              StringTokenizer st = new StringTokenizer(s);                                                            
              while (st.hasMoreTokens()) {
                   if (countt==tokens.length-1) {                              //this expands the array if more space is needed
                             String temp1[] = new String[tokens.length+5000];
                             for (int j = 0; j < tokens.length; j++) temp1[j] = tokens[j];
                             tokens = temp1;
                             tokens[++countt] = st.nextToken();
                        else
                             tokens[++countt] = st.nextToken();     
              if (tokens[4].startsWith("stem")) {
                   if (tokens[4].equals(tokens[201])) {      //Skip this one
                   else
                        if ((tokens[9].equals("32")) && (tokens[15].equals("31"))
                        && (tokens[21].equals("30")) && (tokens[27].equals("29"))
                        && (tokens[33].equals("28")) && (tokens[39].equals("27"))) {
                             System.out.println(tokens[4]);
              for (int k = 201; k < tokens.length-198; k++) {
                   if (tokens[k].startsWith("stem")) {
                        if ((tokens[k].equals(tokens[k+197])) || (tokens[k].equals(tokens[k-197]))) {
                             //Skip this one
                        else
                             if ((tokens[k+5].equals("32")) && (tokens[k+11].equals("31"))
                             && (tokens[k+17].equals("30")) && (tokens[k+23].equals("29"))
                             && (tokens[k+29].equals("28")) && (tokens[k+35].equals("27"))) {
                                  System.out.println(tokens[k]);
    }This one below compiles but doesn't print to the screen.
    import java.io.*;
    import java.util.*;
    class tokenstest {
         public static void main(String args[]) throws IOException {
              int i;                                                       //int to read in the data from the text file
              int count = -1;
              int countt = -1;
              int countc = 0;                                                  //int to put data into a char array
              FileInputStream fin;                                             //input stream
              char array[] = new char[1000000];                                        //array to hold chars from the text file
              String s;                                                  //chars are transfered to this String
              int index;                                                  //index of the names I'm searching for in the string
              String tokens[] = new String[200000];
              String sortdg[] = new String[500];     
              String sortstem[] = new String[500];                         
              try {
                   fin = new FileInputStream(args[0]);
              } catch (FileNotFoundException e) {
                   System.out.println("File not Found");
                   return;
              } catch (ArrayIndexOutOfBoundsException e) {
                   System.out.println("Usage: ShowFile File");
                   return;
              do {
                   i = fin.read();
                   if (i != -1) {
                        if (count==array.length-1) {                              //this expands the array if more space is needed
                             char temp[] = new char[array.length+5000];
                             for (int j = 0; j < array.length; j++) temp[j] = array[j];
                             array = temp;
                             array[++count] = (char) i;
                        else
                             array[++count] = (char) i;                         
              } while(i != -1);
              fin.close();
              s = new String(array);
              StringTokenizer st = new StringTokenizer(s);                                                            
              while (st.hasMoreTokens()) {
                   if (countt==tokens.length-1) {                              //this expands the array if more space is needed
                             String temp1[] = new String[tokens.length+5000];
                             for (int j = 0; j < tokens.length; j++) temp1[j] = tokens[j];
                             tokens = temp1;
                             tokens[++countt] = st.nextToken();
                        else
                             tokens[++countt] = st.nextToken();     
              if (tokens[4].startsWith("stem")) {
                   if (tokens[4].equals(tokens[201])) {      //Skip this one
                   else
                        if ((tokens[9].equals("32")) && (tokens[15].equals("31"))
                        && (tokens[21].equals("30")) && (tokens[27].equals("29"))
                        && (tokens[33].equals("28")) && (tokens[39].equals("27"))) {
                             sortstem[countc] = tokens[4];
                             sortdg[countc] = tokens[3];
                             countc++;
              for (int k = 201; k < tokens.length-198; k++) {
                   if (tokens[k].startsWith("stem")) {
                        if ((tokens[k].equals(tokens[k+197])) || (tokens[k].equals(tokens[k-197]))) {
                             //Do nothing
                        else
                             if ((tokens[k+5].equals("32")) && (tokens[k+11].equals("31"))
                             && (tokens[k+17].equals("30")) && (tokens[k+23].equals("29"))
                             && (tokens[k+29].equals("28")) && (tokens[k+35].equals("27"))) {
                                  sortstem[countc] = tokens[k];
                                  sortdg[countc] = tokens[k-1];
                                  countc++;
              for (int z = 0; z < countc; z++) {
                   System.out.println(sortstem[z]);
              for (int z = 0; z < countc; z++) {
                   for (int y = z+1; y < countc; y++) {
                        if (sortdg[z].compareTo(sortdg[z]) > 0) {
                             String tdg = sortdg[z];
                             String tstem = sortstem[z];
                             sortdg[z] = sortdg[y];
                             sortstem[z] = sortstem[y];
                             sortdg[y] = tdg;
                             sortstem[y] = tstem;
              for (int j = 0; j < 20; j++) {
                   System.out.println(sortstem[j] + ": dG = " + sortdg[j]);
              System.out.println("Test");
    }

    I'm still having trouble with the println in this program. For some reason, in this section of the code, if I put System.out.println(sortstem[0]); inside the for loop, it works fine. But if I try to do it ouside of this loop, it will not work. The only thing I can think of is that the variable is only available inside the loop but I just can't figure it out. Can anyone enlighten me?
    for (int k = 201; k < tokens.length-198; k++) {
                   if (tokens[k].startsWith("stem")) {
                        if ((tokens[k].equals(tokens[k+197])) || (tokens[k].equals(tokens[k-197]))) {
                             //Do nothing
                        else
                             if ((tokens[k+5].equals("32")) && (tokens[k+11].equals("31"))
                             && (tokens[k+17].equals("30")) && (tokens[k+23].equals("29"))
                             && (tokens[k+29].equals("28")) && (tokens[k+35].equals("27"))) {
                                  sortstem[countc] = tokens[k];
                                  sortdg[countc] = tokens[k-1];
                                  countc++;
    [code/]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

  • My iTunes won't open for some reason.

    So for some reason my iTunes will not openm, I've clicked the shortcut, gone to the location, opened as a dmin, and still nothing. I've re-installed it plenty times, and still nothing. I have no absolute idea what is wrong. Maybe it's Quicktime or mobileme, but someone please help. I run Windows 7 64bit.

    Try following steps one at a time:
    1. Check to see if this file APSDaemon.exe is the problem here.
    Close your iTunes.
    Press Ctrl-Alt-Del key and choose Task Manager. In the "Processes" Tab, select the file APSDaemon.exe and click End Prosses button, then close the task manager window.
    Now open itunes and see if it is working?
    If that works, to prevent having to do the same process everytime you restart Windows, go to. START button, type in
    MSCONFIG
    Hit ENTER
    Click STARTUP Tab, Uncheck "Apple Push", click OK.
    Restart Windows.
    2. If you don't see ApsDaemon.exe in the Processes, refer to following article to remove SC files:
    http://support.apple.com/kb/TS2363
    Then, repair your Quicktime. START / CONTROL PANEL / PROGRAMS N FEATURES / hightlight QUICKTIME and click REPAIR.

  • I have one site in my browsing history that won't erase for some reason, and it's been crashing Firefox every time I try to erase it. I changed my security preferences to clear history before each session, and now I can't open Firefox at all. Help.

    The site in question was the homepage for Air BnB (http://www.airbnb.com/). It's never given me problems before, and didn't even after this particular instance. I would like to continue using Firefox, but it ill no longer open, I'm assuming because it gets stuck trying to clear the history (as per my changed preferences).
    Is there a way to uninstall the program without losing my bookmarks?
    Is there a way to manually clear this problem with my history outside the program?

    Have you looked for the previous render files? Show contents of your library and see if there are any files in the Render folder from last night.

  • I'm trying to download Mavericks. It appears in my launchpad with the progress bar underneath it. A tiny part has downloaded but the rest won't download for some reason. What is wrong?

    A fraction of the progress bar has filled up and won't go any further. What should I do? What is wrong with it? It is not my internet connection as I have downloaded three games off Steam today perfectly. I have also checked the specs and they're fine.

    Check the Purchases tab in the App Store. If it shows a Resume button, click on it. It should also show the progress there.

  • My yahoo account won't connect for some reason?

    My yahoo account is not connecting to mail but is accessible through the internet, any help?

    Yahoo haven't replied.  To explain further, this is an existing account which was working one day and not the next! I have a mobile me account that still works next to it but there is an 'offline' sign on the yahoo account and it will not accept incoming.  Pressing the 'take online' doesn't do anything.  What is strange is that I have found that it can still send outgoing!

  • Tunes won't sync for some reason

    I have been using the same Itunes library as my sister to download songs to my iphone. It worked when I first bought the phone- the songs from the library all managed to sync to my iphone no problem. I have since added a few albums of my own to the library, and when I put the cd in the computer it asks me if I want to import, which I do. The problem comes when I click to sync my iphone, the following comes along the top 'Syncing Martin's Phone --> Syncing Contacts --> Syncing Bookmarks --> Syncing Mail Accounts', but it does not sync the tunes from my library to my iphone. I've been on a few techy forums but can't seem to get anywhere. Anyone any ideas?

    Page 134 of the iphone manual addresses syncing problems:
    http://manuals.info.apple.com/enUS/iPhone_UserGuide.pdf

  • I have a issue with my mac book pro. For some reason it won't stay powered on. I can't get past the apple loading logo. The battery is fully charged so it is not the problem. Can anyone tell me what the problem may be and how can i get it resolved?

    I have a issue with my mac book pro. For some reason it won't stay powered on. I can't get past the apple loading logo. The battery is fully charged so it is not the problem. Can anyone tell me what the problem may be and how can i get it resolved?

    The battery is fully charged so it is not the problem.
    What happens when you use the MagSafe?

  • HT4060 For some reason my iPad wont charge at all I'm using the same charger I use on my other iPad n it still won't work

    For some reason my iPad wont charge at all I'm using the same charger I use on my other iPad n it still won't work

    Try giving it a reset. Hold down the sleep and home keys, past when you see the red power down slider and until you see the silver apple. Let it reboot and try again.
    But  if that charger works just fine with your other iPad and not this one, I'd call up your local apple store and make an appointment so they can look at it. Usually when an iPad wont' charge (when plugged into the wall with its supplied charger) it's
    Bad outlet
    bad power brick
    bad cable
    and if the charger is working with another iPad then that rules that out and the thing left is something wrong with the 30 pin port on the iPad, or perhaps something with the battery or software that monitors the battery. ANd things like that are beyond a user fix.
    On the upside if the device is still under warranty - and barring any obvious signs of abuse or neglect - then it should be covered under the warranty.

  • I downloaded a movie last night from iTunes and it downloaded to my laptop and my phone but for some reason it now won't play on my laptop. The album artwork on my laptop has gone and it exists perfectly on my phone. What do I do?

    Help!
    I downloaded a movie last night from iTunes and it downloaded to my laptop and my phone but for some reason it now won't play on my laptop. The album artwork on my laptop has gone and it exists perfectly on my phone. What do I do?
    I paid for it so I'd really like to avoid paying again just to see this movie. Is it because it's on my iPhone? Whenever I try to click on the movie to make it play it just does nothing like it's not there. The file for the movie exists within my iTunes library files but I can't seem to click and drag it into iTunes or open it with iTunes. Need help.

    http://www.everythingicafe.com/quick-tips-how-to-delete-songs-from-your-iphone-i pad-or-ipod-touch/2012/02/14/

  • I have a new email and am trying to change it in icloud. but it has locked me out and won't send my email a reset password link for some reason. even though it says its sent, it doesnt come to the email address

    i have a new email so have a new apple ID now and am trying to change it in icloud. but it has locked me out and won't send my email a reset password link for some reason. even though it says its sent, it doesnt come to the email address. help!

    Welcome to the Apple community.
    If you are unable to remember your password, security questions, don’t have access to your rescue address or are unable to reset your password for whatever reason, your only option is to contact Apple ID Support, upon speaking to an operator you should explain that your problem is related to your Apple ID, this way you will not be charged for assistance, even if you don’t have an AppleCare plan.
    You will need to show patience with the procedure and be prepared to demonstrate without question that the account belongs to you. Don’t expect access to be restored immediately and if you aren’t the owner of the Apple ID registered to the device the account won’t be reset.
    This is answer is provided from my own database of boilerplate responses and the content was last reviewed and/or tested on: 2014/12/18

Maybe you are looking for

  • Count characters in table

    I am trying to write a sql statement that will pull all fields from a table that exceed 26 characters in length. Table: ABC Column1 Column2 abcdefghijklmnopqrstuvwxyz 0009010 abcdefghijklmnopqrstuvwxyz123 0008801 The query I wrote only pulls data at

  • IE v7 alignment issues

    My main content is out of alignment in IE7 but looks fine in Safari and Firefox  (big suprise there). http://fitnessworx.thehtmlcode.com/ I can't get the page to align (shrink to fit)  in IE like it does in Firefox or Safari. I used a template that s

  • Is it possible to update a Command node on just the First Page?

    Hello Experts, I am attempting to add a line count with a value on the condition tab of a Command node but it keeps also applying the same change to the same Command node on the NEXT page. I want to add the linecount to the subsequent Command node bu

  • Multi lines read in ALV using FM

    Hi, I have an ALV report, in that one fld is in edit mode the value can change for multi lines , when I click on a button the  changed values need to store some where. if it is '0' delete that record other wise refresh ALV. I have used FM in my repor

  • Automatic delivery creation

    Hi friends, we have a problem where we want to create automatic purchase requistion when a sales order is created.So we have done the settings where the purchase requistion is getting created.The item category grp for the material is 0002 and BANC. f