Why is not the percantage of battery

and please port siri on the iPod touch 4.th gen

You are not addressing Apple here.  We are just users like yourself. To make a suggestion to Apple:
Apple - iPod touch - Feedback

Similar Messages

  • Why does not the text "Powered by Adobe Forms Central" fästän man has paid form

    Why does not the text "Powered by Adobe Forms Central" fästän man has paid form
    [email protected]

    These forms are not embedded correctly. I'm surprised they even work. You need to go to the distribute tab, click Embed button, copy the embed code provided and then paste that into your HTML. This FAQ explains in more detail and some of the issues you may encounter while embedding: http://forums.adobe.com/docs/DOC-1991
    Randy

  • Why does not the scroll on tbody in new versions of Firefox and how it can solve the problem?

    why does not the scroll on tbody in new versions of Firefox and how it can solve the problem?

    scrolling overflow on tbody is no longer supported because that is not allowed in CSS 2.1 specification.
    See [https://developer.mozilla.org/en/CSS/overflow notes for overflow]

  • Why does not the dictionary work in pdf books?

    Hi friends
    I have a problem, I have some pdf books which I have downloaded from internet, I have put them in the ibooks app, everything works perfectly, but if i want looking for a word, I cannot do it touching the word like normal books. Does not the dictionary work in pdf books in the ibooks app?
    Tks.

    iBooks currently does not provide pdf books annotating or word look up. Lets hope they bring this feature in future versions.
    Regards.
    Elias.

  • Why is not the E90 available on all the other netw...

    I have a Nokia 9500 on the Orange network. I need to change this quickly because the phone is falling to pieces. However orange have told me that the phone is not available to them. I have sent an email to nokia but they have not replyed & this has been over a month ago. I have tried to locate the phone but the only options availabe to me are either to change to the O2 network which i dont want to do because i have been through them all & for me & my business the best network by far is the Orange network. The other option is to buy this outright & sim free but people are charging from £499 up to £650 which is a complete no no!!! please can anyone tell me why the E90 is not available to the Orange network?
    Kind regards,
    Neil Watson

    This sounds like a question for "Orange" not Nokia forums.
    Have you tried on-line auctions to see if you can get one SIM free and unlocked??
    Also, It would be worth searching these forums just to check that the E90 will do "Exactly" what you want, or maybe buy another 9500?.
    I am not trying to be negative, because I think the E90 most have come from canine decent.... The dogs B......s.
    But, this is my 1st communicator, and I am very very pleased with it so far.
    I would like to think that with another Firmware release, it will be even better? Flash Lite 3 support etc....
    But some previous Comummunicator owners have shown some disapointment with the E90's offerings compared with the 9500 on these forums.
    It is not a cheap device, so making the right choice is worth a bit of research!!
    Some things in life are guaranteed, but can you claim on them?

  • Why does not the data get saved into the Database

    Please check if there is any thing wrong with my code here. Why cant i save the data in to my database. when i used the same things in other places it works.
    guys i have copied a portion of the code here. right now i have commented few areas to not give me any errors on the whole program
    Please check why cant i save the data into the database.
    i have created a seperate class for database connection Utilities
    void saveData()
                   //Utilities ut = new Utilities();
                   //connection = ut.getConnection();
                   //ResultSet resultSet;
              // JourneyID = ut.getResults(qryJourneyID);
                   strJourneyID = txtJourneyID.getText();
                   System.out.println("++++++++++++++++++++++++"+strJourneyID);
                   strVehicleID = (String)comboVehicleID.getSelectedItem();
                   System.out.println("++++++++++++++++++++++++"+strVehicleID);
                   strDriverID = (String)comboDvrID.getSelectedItem();
                   System.out.println("++++++++++++++++++++++++"+strDriverID);
                   strStartDateTime = txtDateTime.getText();
                   System.out.println("++++++++++++++++++++++++"+strStartDateTime);
                   int a = JOptionPane.showConfirmDialog (null, "Are u sure you want to save the changes?", "WARNING!", JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE);
                        if (a == 0)
                             if(NEW)// new is a boolean value
                                  //ADDING NEW DATA STATMENT
                                  System.out.println("INSERTING NEW ROW IN THE TABLE...");
                                  try
                                       String insert ="INSERT INTO Job VALUES (" + "'" + strJourneyID + "'"+
                                       ", '"+ strVehicleID +     "',"
                                       +"'"+ strDriverID +"',"
                                       + "'"+ strStartDateTime +"')";
                                       System.out.println("STATEMENT IS " + insert);
    //                                   InsertStmt = connection.createStatement();
    //                                   InsertStmt.executeUpdate(insert);
                                       JOptionPane.showMessageDialog(null, "You data has been successfully saved.","TIS: Operation completed", JOptionPane.INFORMATION_MESSAGE);
                                  catch (Exception e)
                                       e.printStackTrace();
                                       JOptionPane.showMessageDialog(null, "Problem encountered while adding new data");
                             else
                                  JOptionPane.showMessageDialog(null, "it is supposed to save data");
                                  /*try
                                       String ChangeRecord = "UPDATE Job SET " +
                                       "JourneyID = '" + strJourneyID+ "'"+
                                       "VehicleID = '" + strVehicleID+"',"+
                                       "DriverID = '"+strDriverID+"'," +
                                       "StartDateTime='" + strStartDateTime+ "'";//syntax error???
                                       System.out.println(""+ ChangeRecord);
                                       UpdateStmt = connection.createStatement();//just added
                                       UpdateStmt.executeUpdate(ChangeRecord);
                                       JOptionPane.showMessageDialog(null, "You data has been successfully saved.","TIS: Operation completed", JOptionPane.INFORMATION_MESSAGE);
                                  catch (Exception change_exception)
                                       change_exception.printStackTrace();
                                       JOptionPane.showMessageDialog (null, "Problem encountered while updating","TIS: Problem encountered",JOptionPane.ERROR_MESSAGE);
                        else
                             JOptionPane.showMessageDialog(null, "You chose to cancel the operation","Operation cancelled", JOptionPane.INFORMATION_MESSAGE);
                        }

    Yes you have commented all the code that update the
    database so how can it update the database.
    By the way for inserting dont use Statement use
    PrepairedStatement
    by the way next time please post codes in code tagsMan i have commented it becaues it if i dont comment it givens me errors. like cannot find variable and i dont understand how to use the code button. whereever i click the code button it displays the  at the end of the code! what to do?
    connection = ut.getConnection();
    ResultSet resultSet;
    UpdateStmt = connection.createStatement();
    UpdateStmt = connection.createStatement();
    UpdateStmt.executeUpdate(ChangeRecord);
    please check it once again
    void saveData()
                   Utilities ut = new Utilities();
                   connection = ut.getConnection();
                   ResultSet resultSet;
              // JourneyID = ut.getResults(qryJourneyID);
                   strJourneyID = txtJourneyID.getText();
                   System.out.println("++++++++++++++++++++++++"+strJourneyID);
                   strVehicleID = (String)comboVehicleID.getSelectedItem();
                   System.out.println("++++++++++++++++++++++++"+strVehicleID);
                   strDriverID = (String)comboDvrID.getSelectedItem();
                   System.out.println("++++++++++++++++++++++++"+strDriverID);
                   strStartDateTime = txtDateTime.getText();
                   System.out.println("++++++++++++++++++++++++"+strStartDateTime);
    int a = JOptionPane.showConfirmDialog (null, "Are u sure you want to save the changes?", "WARNING!", JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE);
                        if (a == 0)
                             if(NEW)
                                  //ADDING NEW DATA STATMENT
                                  System.out.println("INSERTING NEW ROW IN THE TABLE...");
                                  try
                                       String insert ="INSERT INTO Job VALUES (" + "'" + strJourneyID + "'"+
                                       ", '"+ strVehicleID +     "',"
                                       +"'"+ strDriverID +"',"
                                       + "'"+ strStartDateTime +"')";
                                       System.out.println("STATEMENT IS " + insert);
    //                                   InsertStmt = connection.createStatement();
    //                                   InsertStmt.executeUpdate(insert);
                                       JOptionPane.showMessageDialog(null, "You data has been successfully saved.","TIS: Operation completed", JOptionPane.INFORMATION_MESSAGE);
                                  catch (Exception e)
                                       e.printStackTrace();
                                       JOptionPane.showMessageDialog(null, "Problem encountered while adding new data");
                             else
                                  JOptionPane.showMessageDialog(null, "it is supposed to save data");
                                  try
                                       String ChangeRecord = "UPDATE Job SET " +
                                       "JourneyID = '" + strJourneyID+ "'"+
                                       "VehicleID = '" + strVehicleID+"',"+
                                       "DriverID = '"+strDriverID+"'," +
                                       "StartDateTime='" + strStartDateTime+ "'";//syntax error???
                                       System.out.println(""+ ChangeRecord);
                                       UpdateStmt = connection.createStatement();//just added
                                       UpdateStmt.executeUpdate(ChangeRecord);
                                       JOptionPane.showMessageDialog(null, "You data has been successfully saved.","TIS: Operation completed", JOptionPane.INFORMATION_MESSAGE);
                                  catch (Exception change_exception)
                                       change_exception.printStackTrace();
                                       JOptionPane.showMessageDialog (null, "Problem encountered while updating","TIS: Problem encountered",JOptionPane.ERROR_MESSAGE);
                        else
                             JOptionPane.showMessageDialog(null, "You chose to cancel the operation","Operation cancelled", JOptionPane.INFORMATION_MESSAGE);
                        }

  • Why does not the bar appear on screen of Forecastfox weather that I already installed? My Firefox version is 5

    I installed the complement Forecastfox weather in my version 5 of Mozilla. It is installed because appears in the menu of complements. When I enter the configuration of this complement it allows me perfoirm it but then the menu does not appear on the screen

    Downgrade to FlashPlayer 12.
    I will add a link to a related post later. Flash 13 causes problems, and is a known issue with some older MAC s.

  • TS2446 My I cloud I do ( have two 2,with apple)Why would not the first one work?

    I can make may updates on my MacBook Pro (2012) but I have heard with this old Tank many problems arise with Istalling the FREE LION,I have Snow Leopard and it works fine,some application Pages,will not recieve the update free becuase it is not supported.Also Do I have to upload Lion then upload Mountain Lion,and can I run it on my machine without Buggie Operation,Also even though I am logged in I recieve The TS2446 error even when I am logged in to my valid account?What is the problem I know this 17.5 inch. Mac Book Pro was the best in Feb 2012 (OLD in know).

    The minimum requirement for iCloud is Lion 10.7.2 (Mountain Lion preferred): the iCloud Preference Pane does not appear on earlier systems - the MobileMe pane appears on Lion and earlier but is non non-functional - you cannot now open or access a MobileMe account.
    You can set Snow Leopard up to access the email on an existing iCloud account which has been set up on a compliant device, and you may be able to sync iCal using an unsupported (and possibly unreliable) hack, but no other facilities will work You cannot open an iCloud account on Snow Leopard.
    This page outlines the limited use you can make of an existing iCloud account with Snow Leopard:
    http://www.wilmut.webspace.virginmedia.com/notes/icloudSL.html
    To make proper use of iCloud you will have to upgrade your Mac to Leopard or Snow Leopard, provided it meets the requirements.
    The requirements for Lion are:
    Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7, or Xeon processor
    2GB of memory
    OS X v10.6.6 or later (v10.6.8 recommended)
    7GB of available space
    To purchase it you will have to ring Apple at the number given at the bottom left of this page.
    The requirements for Mountain Lion are listed here:
    http://www.apple.com/osx/specs/
    It is available from the Mac App Store (in Applications).

  • As a novice computer user, I wonder why I'm often getting "white-out" (program/app I'm working in goes totally blank onscreen). If it makes a difference, I'm working 99% of the time on battery, not AC, power. What causes this?

    As a novice computer user, I wonder why I'm often getting "white-out" (program/app/site I'm working in goes totally blank onscreen). This is when I'm Internet online. If it makes a difference, I'm working 99% of the time on battery, not AC, power. Some of the possibilities I'm guessing are: glitches in my Verizon FiOS Wi-Fi providership?; staying too long on a site that's waiting for me to finish and "Submit"?; computer hardware prob (yikes, I hope not! It's brand new). Any ideas out there?

    When this 'white-out' occurs, is the display 100% white with no error message and no menu bar?
    Does this occur when you are using Wi Fi or connected to the Internet via the Ethernet cable?
    Ciao.

  • I bougt a new  Macbook pro in 02/26/2013, in  11/25/ 2013, my trackpad become bulging, they exchange the trackpad, but not the bulging battery.  I went there yesterday, with different problem, and they said one screw  came off from the  truckpad again!

    I bought a new  Macbook pro in 02/26/2013 from Apple Canadian Ices -003.  Than I could not use it, because  my cursor uncontrollably  was jumping around the screen, I was  resumed my trackpad become bulging, Than on11/25/ 2013 they changed my trackpad for free, because was manufactoring defect,  but not the bulging battery.  They said that is do not needed.  Since that my cursor is quiet often quivering, I think my Macbook has serious  manufacturing defect. But they said no, during a year period I went to  the genius bar at least 15 times, with this and similar problems.   I went there yesterday, with different problems, and they said one of the screws  came off from my   truck pad, therefore they need to fix it and change it.  I said: -  What,  how, what  is the real problem?  A screw does not comes off just like that?  They will change my trackpad again, but not the battery. They said  has to rebuild the operation system, I'm  saving all of my data right now! I would like to exchange the battery too, or maybe get a new Macbook. My Macbook is 2010 China model. How long I would have this trackpad  problem? What are you suggesting?

    If it's a 2010 as you say towards the end of your post, it's out of warranty. The battery isn't covered in that case. Why don't you just buy a new battery if that's your concern? If it's a 2013 as you say up at the top, it shouldn't have a bulging battery. How do you know it does? If it really does, ask for the store manager and explain the problem.

  • Why does my MacBook Pro sometimes restores its RAM when I open it, even though it did not run out of battery?

    Sometimes when I open my MacBook Pro, it restores its RAM, as if it has run out of battery, even though it has not run out of battery and it has been charging. Why does this happen, and should it be happening?

    It's similar to hybernation mode in Windows.
    If you put your laptop to sleep, after X amount of hours it will move to the "deeper" sleep level (save memory to disk and shut down...), to save up battery.
    Otherwise if you left your laptop asleep in the evening, you could wake up to a dead battery. Not a great surprise when you in hurry to leave the house with your laptop...
    You can find our more here

  • Why is apple - the most innovative company that pioneered customer experience- not making it easier to find out if Iphone is locked or unlocked? it should be simple to find this status on the phone.

    Why is apple - the most innovative company that pioneered customer experience- not making it easier to find out if IPhone is locked or unlocked? it should be simple to find this status on the phone. I have to go thru so much trouble to find out if the phone is unlocked or not. There should be a much simpler solution to this.

    call them, tell them you NEED a new battery installed, and they need to tell you when they can do it.  That is their job to help you! Give pushback if necessary.

  • Why doesn't the Macbook Pro's battery life last?

    Why doesn't the Macbook Pro's battery life last anywhere near 5 hours, as advertised?  This is my second one and it lasts 2.  It's false advertising, and Apple doesn't seem to making a big deal or know anything about it, which i'm sure they do.  Since their general practice is to deny problems exist in all their products, i'm here to make it known that the most recent Macbook Pro has a severe battery issue and it needs to be addressed.
    I'm running OS X 10.8.3, Bluetooth is off, and haven't installed any third party software.

    My MacBook Pro is over a year old and still gets 2.5 to 5 hours, depending on how intensively my application activity is hitting the CPU and disk. Remember that battery life depends on usage and component loads. You could get 1 hour editing HD video since it would hit all cores and slam the disk constantly, or 8 hours in a cabin in the woods with wifi and Bluetooth turned off, only writing text files, and with the backlight turned down and no disc in the drive. You should check Activity Monitor to make sure you don't have some processes using unusually high amounts of CPU for long periods of time (like browser tabs running Flash ads in the background, chewing up CPU and battery power without even being seen).
    Like mende1 says, there are not huge numbers of Mac users getting only 2 hours, or the world would have heard about it by now and MacBook sales would be down. If you are only getting 2 hours there is something going on local to your machine or usage habits.
    Terry Mele wrote:
    Since their general practice is to deny problems exist in all their products
    That's not strictly true. Apple has often announced updates or repair/exchange programs to address various problems that had come up over time. Maybe not always, but it does happen. They also have often helped me and my friends when we brought in Macs that were out of warranty and had problems. They had no legal obligation to work on our Macs for free, but they did anyway.

  • I have an iphone 3gs the old battery was useless so i replaced it with a new battery but it wont hold a charge now it used to charge to old battery but would just turned off if disconnected to its not the dock connecter any advice

    i have an iphone 3gs the old battery was useless so i replaced it with a new battery but it wont hold a charge now it used to charge to old battery but would just turned off if disconnected to its not the dock connecter any advice

    Advice:
    1. Learn to use punctuation and sentence structure - your post makes little sense.
    2. I'm getting the idea you now want to use your old "useless" battery.  Why, if it's useless?

  • Why the default value is not the Oracle recommended?

    Why the default value is not the Oracle recommended?
    In Oracle 10g, the default alocated unit of Oracle ASM is 1MB. But the Oracle ducumentation states that "To ensure a higher probability of one
    logical I/O resulting in no more than one physical I/O, the minimum stripe depth should be at least twice the Oracle block size". ---See Performance Tuniing Guide (10g10.2 Page8-3.
    It's inconsistent. What is right way?

    >
    Why the default value is not the Oracle recommended?
    In Oracle 10g, the default alocated unit of Oracle ASM is 1MB. But the Oracle ducumentation states that "To ensure a higher probability of one
    logical I/O resulting in no more than one physical I/O, the minimum stripe depth should be at least twice the Oracle block size". ---See Performance Tuniing Guide (10g10.2 Page8-3.
    It's inconsistent. What is right way?
    The default database blocksize of 10g is 8k.
    >
    8 * 128 = 1024
    128 >= 2
    At least twice the size does not mean exactly the doubled size.
    There is no contradiction between the documentation and your observation in this case.
    Kind regards
    Uwe
    http://uhesse.wordpress.com

Maybe you are looking for

  • How to resolve preview when crashing on print?

    Preview crashing when asked to print pdf or ping files. Only adobe works to print but preview was much more convenient to use when it was working the same printer before. So I'd like it to stop crashing if possible. Should I delete and re download th

  • No Business Systems refresh in Integration Directory

    Hello, I'm working with an installation of XI NW 7.0 SR3 ABAP+JAVA on Windows MSSQLServer. I've created many outbound and inbound interfaces and imported idocs too in a specific software component. I've imported the busines system linked to the softw

  • How to create a blank PDF using acrobat SDK in perl or c#

    please help me with creating blank pdf using acrobat SDK in c# or in perl

  • Change in table maintenance generator

    Hi All, I have created one table. While creating data through table maintenace, if for values of nonkey fields are same then it should give some error? How to achieve this functionality? Regards, Jeetu

  • Can't import from Cannon HV20.

    I can't import from my Cannon HV20. The camera does not show up as an external camera. I just get the message "to import video, please connect a camera". I get the same message when connecting to my laptop and I have tried two different firewire cabl