Need Help..... power Charge Problem

My Ipad Mini Have Away Charge 80%-90% only Singe I Buy From The Shop......Why...

Not entirely sure what you mean, but if it's not charging above 80 or 90% then have you tried a reset to see if it charges (and/or the indicator updates) after the iPad has restarted ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

Similar Messages

  • Need help with daq problem

    Hi,
    I need to generate a clock with a period of 20 micro seconds, duty cycle of
    approx 20% and a data line as well as an address line all linked to the clock
    pulse.
    I have tried many different solutions, all using the Daq PCI-1200 but nothing
    seems to work correctly. Usually the system bombs and I have to do a manual
    reset to over come the problem.
    Any suggestions?
    Ken

    Hallo, Ken,
    Du meintest am 20.02.00 zum Thema Need help with daq problem:
    > I need to generate a clock with a period of 20 micro seconds, duty
    > cycle of approx 20% and a data line as well as an address line all
    > linked to the clock pulse.
    You'll need an external clock, expecially under Windows.
    Windows ticks with appr. 18 Hz, and the CPU tick isn't always available
    when Windows tasks multi.
    Viele Gruesse!
    Helmut

  • When trying to install Aid Virtual Instruments I get a warning no mountable file systems. I need help fixing the problem.

    When trying to install Pro Tools 10.3.3 Aid Virtual Instruments I get a warning no mountable file systems. I need help fixing the problem.

    Thanks Linc for responding to my post. I searched a little further and found I was missing a file. Once I downloaded the fix, I was able to install the software from the original download.

  • Need help with getResource() problem under weblogic 6.1

    Hey all,
              I've got a serious problem that I can't figure out. This should be really
              simple - but it's alluding me. I have an ear file with a number of servlets
              inside it. This ear file also contains a resource that my servlets want to
              read from. This resource is located (within the ear file) at:
              "/content/structure/a.txt". The file contains raw ascii.
              To have my serlvet read from this file, I thought it would be as simple as:
              URL content =
              servlet.getServletContext().getResource("/content/structure/a.txt");
              // pw is an instance of PrintWriter
              pw.print(content.getContent());
              However, when I execute the above I get the following exception:
              java.lang.NullPointerException
              at
              java.net.URLConnection.stripOffParameters(URLConnection.java:1011)
              at java.net.URLConnection.getContentHandler(URLConnection.java:979)
              at java.net.URLConnection.getContent(URLConnection.java:581)
              OK, so fine - I figure that I'm new to this. The documentation for the URL
              class tells me there is another way around this. It says that rather then
              calling getContent() directly, I can open a stream on the URL and read from
              that, like so:
              URL content =
              servlet.getServletContext().getResource("/content/structure/scenario2resourc
              es.txt");
              FileInputStream fis = content.openStream();
              but when I do this I get the following different exception:
              java.lang.ClassCastException: weblogic.utils.zip.SafeZipFileInputStream^M
              at Utility.writeFileToOutput(Utility.java:134)^M
              Apparently this thing is trying to return a web-logic-specific stream (which
              is incompatible with an FileInputStream) - which I don't want to use or
              learn about since I want my stuff to work under other webservers.
              Can anyone tell me what I'm doing wrong? This should be simple.
              -john
              John Hilgedick
              WisdomTools, Inc.
              [email protected]
              

    Wenjin,
              I appreciate your response. I tried treating it as a normal InputStream -
              but it didn't make any difference. Here's what I did:
              URL content =
              servlet.getServletContext().getResource("/content/structure/scenario2resourc
              es.txt");
              InputStream is = (InputStream)content.getContent();
              And here's the exception:
              java.lang.NullPointerException^M
              at
              java.net.URLConnection.stripOffParameters(URLConnection.java:1011)^M
              at
              java.net.URLConnection.getContentHandler(URLConnection.java:979)^M
              at java.net.URLConnection.getContent(URLConnection.java:554)^M
              at java.net.URL.getContent(URL.java:807)^M
              at Utility.writeFileToOutput(Utility.java:134)^M
              You can see that it is definitely breaking somewhere in getContent().
              If you have any other ideas, I'd appreciate hearing about them.
              -john
              ----- Original Message -----
              From: "Wenjin Zhang" <[email protected]>
              Newsgroups: weblogic.developer.interest.servlet
              Sent: Wednesday, November 20, 2002 5:03 PM
              Subject: Re: Need help with getResource() problem under weblogic 6.1
              >
              > The "/" in getServletContext().getResource("/content/structure/a.txt")
              means the
              > web (WAR) application root, not your EAR root.
              >
              > The ClassCastException is because that content.openStream() is not
              FileInputStream
              > and has nothing to do with Weblogic. You should treat it as normal
              InputStream.
              >
              >
              > "John Hilgedick" <[email protected]> wrote:
              > >Hey all,
              > >
              > >I've got a serious problem that I can't figure out. This should be
              really
              > >simple - but it's alluding me. I have an ear file with a number of
              servlets
              > >inside it. This ear file also contains a resource that my servlets want
              > >to
              > >read from. This resource is located (within the ear file) at:
              > >"/content/structure/a.txt". The file contains raw ascii.
              > >
              > >To have my serlvet read from this file, I thought it would be as simple
              > >as:
              > >
              > >URL content =
              > >servlet.getServletContext().getResource("/content/structure/a.txt");
              > >// pw is an instance of PrintWriter
              > >pw.print(content.getContent());
              > >
              > >However, when I execute the above I get the following exception:
              > >
              > >java.lang.NullPointerException
              > > at
              > >java.net.URLConnection.stripOffParameters(URLConnection.java:1011)
              > > at
              java.net.URLConnection.getContentHandler(URLConnection.java:979)
              > > at java.net.URLConnection.getContent(URLConnection.java:581)
              > >
              > >OK, so fine - I figure that I'm new to this. The documentation for the
              > >URL
              > >class tells me there is another way around this. It says that rather
              > >then
              > >calling getContent() directly, I can open a stream on the URL and read
              > >from
              > >that, like so:
              > >
              > >URL content =
              >
              >servlet.getServletContext().getResource("/content/structure/scenario2resour
              c
              > >es.txt");
              > >FileInputStream fis = content.openStream();
              > >
              > >but when I do this I get the following different exception:
              > >
              > >java.lang.ClassCastException: weblogic.utils.zip.SafeZipFileInputStream^M
              > > at Utility.writeFileToOutput(Utility.java:134)^M
              > >
              > >Apparently this thing is trying to return a web-logic-specific stream
              > >(which
              > >is incompatible with an FileInputStream) - which I don't want to use
              > >or
              > >learn about since I want my stuff to work under other webservers.
              > >
              > >Can anyone tell me what I'm doing wrong? This should be simple.
              > >
              > >-john
              > >
              > >
              > >--
              > >John Hilgedick
              > >WisdomTools, Inc.
              > >[email protected]
              > >
              > >
              >
              

  • Need help regarding graphics problem,!!​!

    Hi,
                    I’m a Customer of your prestigious Organization, recently I bought a HP Laptop MODEL-15 D-103TX , everything is fine with my Laptop and Feeling proud to use this HP product , But I’m facing strange problem that my Laptop Graphics are running smooth when I connect to my AC power Charger , but as soon as I Disconnect the Power Cord , I lose the Graphics performance as I was getting it when I was connected to Power, and it makes me feel Very annoyed  that HP product can give such a silly but headache problem,
                                    I had even downloaded the HP drivers from the Official HP Website and Installed them Correctly as per the STEPS given in your Website, and even tried by Configuring the POWER PLAN to MAXIMUM performance, and even Calibrated the Battery according to the HP SUPPORT ASSISTANCE and it shows that Battery status is OK, but too I’m facing the same problem,
                    I hope you respond to my mail ID as soon as possible, and help me to solve this problem and maintain the SERVICE STATUS and PRIDE of HEWLET-PACKARD, Please Don’t make me upset, and don’t make me to take any further sever Actions.
                                                      ​                                                  ​                                            Thank You

    Hi @Tajuddin_Hongal ,
    Welcome to the HP Forums!
    I would like to take a moment and thank you for using the forum, it is a great place to find answers. For you to have the best experience in the HP forum, I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I understand that while connected to AC power your performance is good, but once you disconnect and run on battery the performance drops.
    You have updated the driver and checked the power plan.
    Your system has switchable graphics.   HP 15-d103tx Product Specifications.  Your processor has an integrated Intel 4600 and you have NVIDIA GeForce 820M (2 GB DDR3 dedicated).
    When you are connected to AC it uses the high end to deliver the best performance, when you switch to battery, to save power, it switches to the lower end.  You should be able to configure the graphics in the Catalyst Control Center  to change this behaviour.  Here is a link to assist you with that endeavor.
    Switchable Graphics on Notebooks Configured with Intel and ATI GPUs
    If you are still having an issue, I suggest contacting HP support for further assistance.
    Please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region Technical Support Sitemap .
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • Power charging problem

    hii guys
    need help my laptop when pluggin dan charging always discharge when running program but when it turn off or idle normal charging any solution? hardware or software problem?
    many thanks

    Welcome to the forum.
    1. What is the model number of your notebook? (See How to find a product number or machine type and model?)
    2. What is the wattage of your AC charger? Look at the sticker for something like 20VDC 4.5A or 20VDC 3.25A. The first indicates a 90W charger and the second indicates 65W. It is possible that your system requires 90W but your charger supplies only 65W.
    3. Did this problem start recently?
    Cheers... Dorian Hausman
    X1C2, TPT2, T430s, SL500, X61s, T60p, A21p, 770, 760ED... 5160, 5150... S360/30

  • Need Help, Power Mode Changer

    So the yoga is a cool computer but, it lacks lots of features. I for one miss the ideapad touch button power mode feature from my old laptop.
    I am remaking this program but I need help with the graphics.
    This is where I am right now:
    http://i43.tinypic.com/5mwgeq.png
    My goal is to make a hotkey controllable program that will change mode with the key function : ALT + Spacebar
    It will probably take me 20 more min to add this hotkey feature. However, I need help with the graphics. If you guys help with the graphics, I will share this program with the public. 
    Also, I would love suggestions and ask for your opinion. Is this something you would be intrested in?
    Of course, the program will be free of charge and I might even make it open source.
    ***Edit***
    To show you guys I am not BSing:
    http://alltechtalk.net/Power_Mode_Changer.exe
    To change between modes, press the LEFT ALT + Z. In the final version, the hotkey will be left alt + space bar, for now, this is a beta.

    The program has already been made. All I need is help with the graphics. 
    Attached below is a sample background and button png, in the size it needs to be. 
    http://www.sendspace.com/file/xmnqnw
    To show you guys I am not BSing:
    http://alltechtalk.net/Power_Mode_Changer.exe
    To change between modes, press the LEFT ALT + Z. In the final version, the hotkey will be left alt + space bar, for now, this is a beta.

  • I try signing into iMessage and it takes about 45-50 seconds to do. When that happens it tells me there is a network problem. I am positive I don't have a network problem and I need help on this problem please??

    I try to sign in and it just takes forever to do I try and try and do it over and over and it brings me the same results. Created a new Apple ID and when I did it still tells me there is a network problem. But the thing is I am still able to use the Internet I need help?? And it does the exact same thing for FaceTime so I don't know what to do??

    Error -3259 is a network timeout error, usually. This article might help:
    http://support.apple.com/kb/TS2799

  • Need Help with Scrolling Problem

    I have a JTree displayed in scrollpane. Based on search criterial I select the nodes where the search criteria is found. If the match is located off the screen further down into the tree, the node is highlighted but the scrollpane doesn't automatically scroll down to show it. Any help with this problem is appreciated.

    Wow.. Thanks. I thought I would need some fancy code to handle this problem. scrollPathToVisible did it for me. Thanks.

  • Need help bad, screen problem

    heres my problem. i setup arch on my desktop last night (64bit), i installed my nvidia drivers. i have a 21" crt sun monitor, not sure the model number. but i brought it to a friends this morning to update and install kdemod since they have highspeed. now i was hooked up to their monitor, they have a cheap 15" crt. so it worked fine there, now when i got it home, i get a black screen when it boots up on my monitor, i can get to a console however
    i deleted a couple lines in the monitor section in the xorg.conf............so now i get 640x480 res, but i cant use anything higher
    been searching around, and i found some stuff about running Xorg -configure, but i get something about a tmp file being locked..........and i dont know how to delete anything here from the console
    i need help here
    Last edited by ssl6 (2007-09-16 07:00:40)

    nvm, i just deleted the xorg.conf and rebooted, its fine now
    edit// nvm, its not using my nvidia driver.........i might still need help, im trying something right now, not sure what im doing though
    ok, i tried to run nvidia-xconfig, and when i rebooted, im back to square one with my monitor flashin an invalid scan frequency
    well, i deleted the xorg.conf again and got it booted up. but i generated a new one with nvidia-xconfig again, heres what i puts out, i just need to remember not to reboot any time soon. im using a 7900gs, the newest nvidia 100 series drive from the repo, and arch 64bit on this system by the way
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 1.0 (buildmeister@builder26) Wed Jun 13 16:54:14 PDT 2007
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    EndSection
    Section "Files"
    RgbPath "/usr/lib/X11/rgb"
    EndSection
    Section "Module"
    Load "dbe"
    Load "extmod"
    Load "type1"
    Load "freetype"
    Load "glx"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "Unknown"
    HorizSync 30.0 - 110.0
    VertRefresh 50.0 - 150.0
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    here's that part of the xorg.conf from my other computer running 32bit arch with a geforce 3 connected to the same monitor via kvm switch. this machine is using a 96xx driver though
    Section "Monitor"
    # HorizSync is in kHz unless units are specified.
    # HorizSync may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    # HorizSync 30-64 # multisync
    # HorizSync 31.5, 35.2 # multiple fixed sync frequencies
    # HorizSync 15-25, 30-50 # multiple ranges of sync frequencies
    # VertRefresh is in Hz unless units are specified.
    # VertRefresh may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    Identifier "sun"
    HorizSync 31.5 - 82.0
    VertRefresh 50.0 - 90.0
    EndSection
    Section "Device"
    # The chipset line is optional in most cases. It can be used to override
    # the driver's chipset detection, and should not normally be specified.
    # Chipset "generic"
    # The Driver line must be present. When using run-time loadable driver
    # modules, this line instructs the server to load the specified driver
    # module. Even when not using loadable driver modules, this line
    # indicates which driver should interpret the information in this section.
    # The BusID line is used to specify which of possibly multiple devices
    # this section is intended for. When this line isn't present, a device
    # section can only match up with the primary video device. For PCI
    # devices a line like the following could be used. This line should not
    # normally be included unless there is more than one video device
    # intalled.
    # BusID "PCI:0:10:0"
    # VideoRam 256
    # Clocks 25.2 28.3
    Identifier "Standard VGA"
    Driver "vga"
    VendorName "Unknown"
    BoardName "Unknown"
    EndSection
    Section "Device"
    #VideoRam 65536
    # Insert Clocks lines here if appropriate
    Identifier "geforce"
    Driver "nvidia"
    EndSection
    Section "Screen"
    Identifier "Screen 1"
    Device "geforce"
    Monitor "sun"
    DefaultDepth 24
    Option "AddARGBGLXVisuals" "True"
    SubSection "Display"
    Viewport 0 0
    Depth 8
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection
    any ideas here?
    Last edited by ssl6 (2007-09-16 07:53:48)

  • I need help with simple problems. im a student.

    i'd like to be advanced with my studies so i will post questions.. i need help on how to answer. thank you.
    1. create a java program that will evaluate if the value entered is a positive, negative, vowel, consonant and special characters.
    im actually done with the positive and negative using if else statements.. i used an integer data type. now my question is how do conjoin the characters when i need to evaluate a vowel and a consonant. i cant use char either. please help. i dont know what to do yet.
    2. create java program that will translate the input from numbers to words. e.g. input:123 output: one hundred twenty-three.
    i have an idea to use a switch case statement. but i have no idea on how will i be able to do it. so if you guys can help me.. well then thankies..

    Welcome to the Sun forums. First, please note that you have posted in the wrong forum. This forum is for topics related to Sun's JavaHelp product. You should post your questions in the New to Java forum.
    As part of your learning, you will have to develop the ability to select an approach to a problem, create a design that reflects that approach, and then implement the design with code that you create.
    So, it's inappropriate for us to take the problem statement that you have been given and short-circuit your learning process by giving you the implemented problem solution. We can comment on the individual questions that you may have, and point out problems and errors that we see in the code that you develop.
    As a hint, when you are stuck, forget about Java and programming. Just start with a sheet of paper and a pencil, and figure out how to layout the task on paper. The consider how to translate that to programming.
    If you have problems, post short example code that shows the problem, and explain your question clearly. We can't read minds.
    Make sure you post code correctly so that it's not mangled by the forum software, and so that formatting is maintained. Select your typed or pasted code block and press the CODE button above the typing area.

  • Need help with this problem.

    I have just updated my ipod and it is saying i need to connect it to my Apple iPod Power Adapter, the problem is that i do not have one.
    Is there anyway to reset the update process untill i get a adapter.
    I have tried resetting it with the instructions given on this site, but it is just showing a picture of the Apple iPod Power Adapter plug.

    When updating or restoring some iPods via a usb connection, it needs to be plugged into power via the charger to complete the process, and this is why you see that icon displayed. It's also why older iPods that required this step were supplied with a power adaptor as standard.
    You may be able to complete the process via a car charger, or via a powered firewire port on the computer (with the required 6 pin cable of course) if you have access to either of those. Or maybe visit an Apple store if one is nearby.
    Or you can try this.
    http://www.bearsdriving.com/blog/archives/2005/10/youripod_tipo.html
    Other than that, your iPod cannot be used until you complete this process.

  • Need Help w/ Multiple Problems

    Ok, I'm a complete neophyte with computers so please bear with me. I bought my MacBook in July of 2008.
    In the past five to six months I've started to experience some scary moments with my laptop.
    1. My fan gets really high and hums much louder than previously. Any recommendations on a problem or is it simply overheating from extended use?
    2. My battery life, as similar to most other Mac problems, is terrible now. If I unplug my power adapter at 100% within five minutes the battery drains down to below 50% or a pop up says that I'm running on reserve power. How can I alleviate this problem? Do I need to purchase a new battery?
    3. Occasionally, while in the middle of something my screen will go black. I try to increase the brightness but nothing happens. The illuminating light where I can pop open the top stays lit when I close it. It takes about three minutes of me trying to hold down the power button before it goes back to my log in screen.
    I've really enjoyed having this laptop but I'm worried it's going to crash soon. I planned for the worst and purchased an external hard drive just in case but have yet to upload most stuff. Is it recommended that I use this HD as a backup for TimeMachine (exactly what is time machine first of all)?
    Anyways any help is greatly appreciated!
    Thanks so much

    Thank you very much for the quick response Joseph and eww
    @Joseph
    1. When the fan ramps up I could be typing a document on Word with Safari and iTunes open as well. It could also begin going off when I'm watching something on Hulu. So to answer your question it usually happens with entertainment activities, but not games.
    2. I use the battery regularly but I don't know what direct current means (neophyte again I'm sorry). How do I calibrate my computer battery? Is that simply adjusting my battery preferences? I haven't considered taking it to a Genius because at my University we have technicians that have been "Apple certified" but they usually take a long time to give a prognosis on computers and since it's finals week that's just another reason why I've yet to go.
    3. What do you mean by PRAM? Would resetting this mean that I would lose everything on my computer? When it goes black it doesn't dim, it simply goes black. It's a rare occurrence but it's happen 3-5 times in the past year. I've done research on these forums about folks who've experienced the same problems but the computer terminology always confuses me.
    4. Thank you very much for your help Joseph.
    @eww
    Thank you for your help. I will look into getting a replacement battery. Am I able to reinstall them myself or would I need to hire a Genius?

  • NEED HELP: Power reset on PowerBook G4 400MHz

    Hello, all. I recently installed a new logic board into an older PowerBook G4 400MHz system, which had previously been operating on a broken logic board. The system ran fine for a few days. After I reinstalled the system software and shut down the system, however, the unit refused to boot up. When I would push the power button, I could hear the hard drive start and the Mac "ding" would sound, but nothing would appear on the screen. I hit the power reset button on the back of the machine, and that initially appeared to clear up the problem. I could boot up and restart without a problem. However, when I attempted to shut down and then boot up, the same problem occurred once more. It can always be rectified by pushing the power reset, but I'm hoping a better fix exists. I did try flashing the PRAM, but it had no effect.
    Any help will be appreciated! I'm preparing to sell the laptop on eBay and need some advice as soon as possible.
    Blessings, David

    Hi, David. Will the PB boot to a CD without a Power Manager reset? If so, the problem is software based, and might be rectified by zeroing the hard drive — which you'll want to do anyway before selling it — and reinstalling the OS.
    If it won't boot to a CD without resetting the PMU, it has another hardware problem, and it may be wiser just to sell it as a parts machine than to try to repair it again.

  • IBook G3 Power/charge problem

    I have a ibook G3. It doesn't charge properly (taking two days to charge to 6% which drains in minutes when turned on)
    I have reset the PMU with the little button on the side. I have also tried plugging in the power adaptor with and without the battery in place to see if I can use it that way but it makes no difference. I can see it recognises that a charger is plugged in (I've bought a new charger/adaptor thinking that may have been the problem but it makes no difference)it is just not utilising the power. What can I do?

    Hi, and welcome to Apple Discussions.
    You may need to replace the battery.
    Possible sources:
    http://store.apple.com/us/product/M9337G/A
    http://www.laptopbattery.net/apple/?CMP=KNC-LCB-APPLE-G
    http://www.laptop-battery.org/APPLE/M8403.htm
    http://www.notebook-batteries.net/laptop-battery/apple/NMA005.htm
    http://www.priorityelectronics.com/apple/661-2472-1.htm
    http://eshop.macsales.com/shop/powerbook/battery/ibook-g3-g4-12inch/
    http://www.powerbookmedic.com/Apple-iBook-Battery---G3---G4---NEW-p-16449.html

Maybe you are looking for