Why can't I get my iphone to import all the email address  when it imports from address book?   It syncs all other info. It make we want to go back to my blackberry

Why can't I get my iphone to import all the email address  when it imports from address book?   It syncs all other info.
I tried over and over, there must be something I need to change.
It make we want to go back to my blackberry

Usually restoring from backup eliminated the corrupted files. However, sometimes restoring to factory settings/new iPod is required.
To restore from backup see:
iOS: How to back up
To restore to factory settings/new iPod see:
iTunes: Backing up, updating, and restoring iOS software

Similar Messages

  • Why can I not get my iPhone Playlist to match on my iPad and PC. I want my iPhone Playlist to appear on my PC and my iPad.

    Why can I not get my iPhone Playlist to match on my iPad and PC. I want my iPhone Playlist to appear on my PC and my iPad.

    Yes I understand the PC is where everything is maintained and my playlists used to reside there and that is where I created them. However, they are now gone and only appear on my iPhone and I am trying to figure out how to get my Playlists to show back up on my PC so I can manage the songs.

  • Why can't I get my phone to vibrate for new email

    Why can't I set my phone to vibrate for new email. I have it set for vibrate but I still get a sound alert.

    Why can't I set my phone to vibrate for new email. I have it set for vibrate but I still get a sound alert.

  • Can you still get your iPhone repaired on warranty at apple even if you bought from carphone warehouse ?

    My iPhone 5 lock button is broke can I take it to apple to get fixed on warranty even though it's from carphone warehouse ?

    Apple handles all iPhone warranty/support in the UK. Be aware, Apple does not fix iPhones in the UK, they replace them. So, before you go to an Apple store, backup your phone. If covered by warranty, the phone will be replaced for free. If not under warranty, the cost will be US $229.

  • Why Can't I get my total to output to the text area?

    I can get the numbers to go to the text area and to clear the text area but, the only way I have figured out how to output the total is with a JOptionPane. Can someone look at my code and tell me how to fix this?
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Calculator4 extends JApplet implements ActionListener
    String Nums="";
    String sNum="";
    double Num1=0;
    double Num2=0;
    double Add=0;
    double Subtract=0;
    double Multiply=0;
    double Divide=0;
    int choice=0;
    private JTextField displayField;
    private JButton Button0, Button1, Button2, Button3, Button4, Button5,
    Button6, Button7, Button8, Button9, ButtonAdd, ButtonSub,
    ButtonMult, ButtonDiv, ButtonClear, Buttontotal;
    public void init()
    Container container = getContentPane();
    container.setLayout(new FlowLayout());
    displayField = new JTextField(15);
    displayField.setEditable(false);
    container.add(displayField);
    Button1 = new JButton("1");
    Button1.addActionListener(this);
    container.add(Button1);
    Button2 = new JButton("2");
    Button2.addActionListener(this);
    container.add(Button2);
    Button3 = new JButton("3");
    Button3.addActionListener(this);
    container.add(Button3);
    ButtonAdd = new JButton("+");
    ButtonAdd.addActionListener(this);
    container.add(ButtonAdd);
    Button4 = new JButton("4");
    Button4.addActionListener(this);
    container.add(Button4);
    Button5 = new JButton("5");
    Button5.addActionListener(this);
    container.add(Button5);
    Button6 = new JButton("6");
    Button6.addActionListener(this);
    container.add(Button6);
    ButtonSub = new JButton("-");
    ButtonSub.addActionListener(this);
    container.add(ButtonSub);
    Button7 = new JButton("7");
    Button7.addActionListener(this);
    container.add(Button7);
    Button8 = new JButton("8");
    Button8.addActionListener(this);
    container.add(Button8);
    Button9 = new JButton("9");
    Button9.addActionListener(this);
    container.add(Button9);
    ButtonMult = new JButton("*");
    ButtonMult.addActionListener(this);
    container.add(ButtonMult);
    Button0 = new JButton("0");
    Button0.addActionListener(this);
    container.add(Button0);
    ButtonDiv = new JButton("/");
    ButtonDiv.addActionListener(this);
    container.add(ButtonDiv);
    ButtonClear = new JButton(" Clear ");
    ButtonClear.addActionListener(this);
    container.add(ButtonClear);
    Buttontotal = new JButton("=");
    Buttontotal.addActionListener(this);
    container.add(Buttontotal);
    public void actionPerformed(ActionEvent actionEvent)
    if(actionEvent.getSource() == Button1)
    play(getCodeBase(),"Ping.WAV");
    if(Nums==null)
    {  Nums= "";
    displayField.setText("1");}
    if(Nums!=null)
    {  Nums= Nums + 1;
    updateDisplay();}
    else if(actionEvent.getSource()==Button2)
    play(getCodeBase(),"Ping.WAV");
    if(Nums==null)
    {  Nums= "";
    displayField.setText("2");}
    if(Nums!=null)
    {  Nums= Nums + 2;
    updateDisplay();}
    else if(actionEvent.getSource()==Button3)
    play(getCodeBase(),"Ping.WAV");
    if(Nums==null)
    {  Nums= "";
    displayField.setText("3");}
    if(Nums!=null)
    {  Nums= Nums + 3;
    updateDisplay();}
    else if(actionEvent.getSource()==Button4)
    play(getCodeBase(),"Ping.WAV");
    if(Nums==null)
    {  Nums= "";
    displayField.setText("4");}
    if(Nums!=null)
    {  Nums= Nums + 4;
    updateDisplay();}
    else if(actionEvent.getSource()==Button5)
    play(getCodeBase(),"Ping.WAV");
    if(Nums==null)
    {  Nums= "";
    displayField.setText("5");}
    if(Nums!=null)
    {  Nums= Nums + 5;
    updateDisplay();}
    else if(actionEvent.getSource()==Button6)
    play(getCodeBase(),"Ping.WAV");
    if(Nums==null)
    {  Nums= "";
    displayField.setText("6");}
    if(Nums!=null)
    {  Nums= Nums + 6;
    updateDisplay();}
    else if(actionEvent.getSource()==Button7)
    play(getCodeBase(),"Ping.WAV");
    if(Nums==null)
    {  Nums= "";
    displayField.setText("7");}
    if(Nums!=null)
    {  Nums= Nums + 7;
    updateDisplay();}
    else if(actionEvent.getSource()==Button8)
    play(getCodeBase(),"Ping.WAV");
    if(Nums==null)
    {  Nums= "";
    displayField.setText("8");}
    if(Nums!=null)
    {  Nums= Nums + 8;
    updateDisplay();}
    else if(actionEvent.getSource()==Button9)
    play(getCodeBase(),"Ping.WAV");
    if(Nums==null)
    {  Nums= "";
    displayField.setText("9");}
    if(Nums!=null)
    {  Nums= Nums +9;
    updateDisplay();}
    else if(actionEvent.getSource()==Button0)
    play(getCodeBase(),"Ping.WAV");
    if(Nums==null)
    {  Nums= "";
    displayField.setText("0");}
    if(Nums!=null)
    {  Nums= Nums + 0;
    updateDisplay();}
    else if(actionEvent.getSource()==ButtonAdd)
    play(getCodeBase(),"Ping.WAV");
    choice = 1;
    sNum="";
    sNum = Nums;
    Nums=null;
    else if(actionEvent.getSource()==ButtonSub)
    play(getCodeBase(),"Ping.WAV");
    choice = 2;
    sNum="";
    sNum = Nums;
    Nums=null;
    else if(actionEvent.getSource()==ButtonMult)
    play(getCodeBase(),"Ping.WAV");
    choice = 3;
    sNum="";
    sNum = Nums;
    Nums=null;
    else if(actionEvent.getSource()==ButtonDiv)
    play(getCodeBase(),"Ping.WAV");
    choice = 4;
    sNum="";
    sNum = Nums;
    Nums=null;
    else if(actionEvent.getSource()==Buttontotal)
    play(getCodeBase(),"Ping.WAV");
    if(choice==0)
    JOptionPane.showMessageDialog(null,"Please Select Operation");
    if(choice!=0)
    switch(choice)
    case 1:
    if(Nums!=null)
    {    Num1 = Double.parseDouble(sNum);
    Num2 = Double.parseDouble(Nums);
    double Add = Addition(Num1, Num2);
    JOptionPane.showMessageDialog(null,"Your Sum is: " + Add);
    sNum = "";
    if(Nums==null)
    JOptionPane.showMessageDialog(null,"Please Enter Second number");
    Nums=null;
    break;
    case 2:
    if(Nums!=null)
    {    Num1 = Double.parseDouble(sNum);
    Num2= Double.parseDouble(Nums);
    double Subtract = Subtraction(Num1, Num2);
    JOptionPane.showMessageDialog(null,"Your Difference is: " + Subtract);
    sNum = "";
    if(Nums==null)
    JOptionPane.showMessageDialog(null,"Please Enter Second number");
    Nums=null;
    break;
    case 3:
    if(Nums!=null)
    {    Num1= Double.parseDouble(sNum);
    Num2= Double.parseDouble(Nums);
    double Multiply = Multiplication(Num1, Num2);
    JOptionPane.showMessageDialog(null,"Your Product is: " + Multiply);
    sNum = "";
    if(Nums==null)
    JOptionPane.showMessageDialog(null,"Please Enter Second number");
    Nums=null;
    break;
    case 4:
    if(Nums!=null)
    {    Num1 = Double.parseDouble(sNum);
    Num2= Double.parseDouble(Nums);
    double Divide = Division(Num1, Num2);
    JOptionPane.showMessageDialog(null,"Your Quotient is: " + Divide);
    sNum = "";
    if(Nums==null)
    JOptionPane.showMessageDialog(null,"Please Enter Second number");
    Nums=null;
    break;
    else if(actionEvent.getSource()==ButtonClear)
    play(getCodeBase(),"Ping.WAV");
    displayField.setText("");
    Nums=null;
    sNum="";
    choice=0;
    Num1=0;
    Num2=0;
    public void updateDisplay()
    displayField.setText(Nums);
    public double Addition(double Num1, double Num2)
    return ( Num1 + Num2);
    public double Subtraction(double Num1, double Num2)
    return ( Num1 - Num2);
    public double Multiplication(double Num1, double Num2)
    return ( Num1 * Num2);
    public double Division(double Num1, double Num2)
    return ( Num1 / Num2);
    }

    You mean something like this:
    private int currentNumber =0;
    private int total = 0;
    private JTextField Display = new JTextField(10);
    private JtextField Current = new JTextField(10);
    // Add all your buttons correctly
    // Try using a GridLayout to make it easier
    // blah blah
    public void actionPerformed( ActionEvent event )
    int number = -1;
    String Command = event.getActionCommand();
    // Play your sound here.....
      doPlaySound();
    try
       number = Integer.parseInt( command );
    catch( NumberFormatException NFE )
        //ignore
    if( number != -1 )
        doIsNumber( number );
        return;   // don't process further
    if( command == "Enter" )
        doEnter();
        return;
    if(command == "Plus" )
        doPlus();
        return;
    // and so on
    }//end actionPerformed
    private void doNumber( int number )
       String S;
        currentNumber = ( currentNumber * 10 ) + number;
        S = Integer.tostring( currentNumber );  //cant remember if that throws anything
       Current.setText( S );  //Display Work Number
      private void doPlus()
        String S;
        total = total + currentNumber;
        currentNumber = 0;
        Current.setText("");
        S = Integer.toString( total );
        Display.setText( S );
      private void doEnter()
        total = currentNumber;
        currentNumber = 0;
        Current.setText( "");
        Display.setText( Integer.toString( total ) );
      private void doDivide()
         System.out.println("Err you got to be kidding");
      }yeh and I'd definitely go for a GridLayout()
    4 * 4, with JLabels for the blank filler parts......
    So does this help

  • Why can't I get my document to send to my email

    How do I get my document to send to an email

    Kristen can you give us more info then that? Do you have any AS code you can share to look at? How are you passing the email, PHP, ASP ?

  • Why do all the windows open when i start my mac book pro up

    After closing all the windows on my macbook pro , i shut the computer down, on re-starting the computer it opens all the wuindows up again
    any ideas why ?

    Steve, are you closing the individual windows are quiting the programs?  Do you have the box checked that says to open windows on restart?  You should see that when you log out.

  • HT201210 Why can't i get my iphone 3gs out of recovery mode when i try to restore it?

    Hello People,
    My iPhone 3GS has gone into "Recovery Mode" and ive tried to restore it. When it reaches the firmware it stops and my iPhone restarts and i get an error message saying "The iPhone 'iPhone' could not be restored. An unknown error has occured(1)." Ive tried putting it into DFU mode but it doesn't seem to work (its like it is in a loop). Ive tried different firmwares such as 3.1.3 and 4.1 and it still stops at the firmware section. The iPhone was new out of the box about 4-5 days ago and i get this.
    Any suggestions please post below this thread.
    Best Regards,
    Kieran
    <Email Edited By Host>

    You've just exposed your email address to millions of people, some of whom are spammers or worse. That was not a good idea. Expect a massive increase in spam as a result, unless the mods see it and edit it out of your message. You can only restore a 3GS to iOS 5.1.1. If you are trying to install an earlier version you must hack or jailbreak your phone; error 1 is usually an indication that the phone is jailbroken. See: http://support.apple.com/kb/TS3694#error1

  • HT5262 Why can't I get my iPhone to link to wifi ?

    Been trying to link iPhone 4 ti wifi so can bck up to iCloud. My iPad connects to wifi via tethering (t mobile, hotspot) when not home. However via broadband at home. However can't get wifi n phone at home only hotspot. Confused am I.

    Resetting network settings will "...will reset all network settings including: previously connected Wi-Fi networks and passwords, recently used Bluetooth accessories, VPN and APN setting", but not sure beyond that.  You might want to read through this to see if anything here helps: http://support.apple.com/kb/TS1398.

  • Why can't I get one Iphone to push out calendar invites to other I products.  It will receive but not push out.

    Cant get Iphone calendars to sync

    I  finally solved this problem after toiling with it for a couple of  days.  Solution:  Once you have  burned your CD you must go back into  iTunes to your music/playlists and select the playlist you just burned  and click file; print and you will  get the mosaics that we have been  accustomed to.  I was on hold with  Apple Support when I found this  myself.  Yes......!!! Problem solved..for me anyway.  Good luck!
    Scott

  • Why can't I get my Iphone to upgrade to iOS5?

    Why won't my IPhone 3G update to IOS5?  Both phones indicate they are current (4.2.1).   No problem with my IPad2 so it's not the computer I am using or something I am doing.

    Because the iPhone 3G(not 3GS) is incompatible with iOS 5.
    (61153)

  • HT4623 Why can't I get my iPhone 5 to plays movies from it to a tv

    Help

    "help" is not a very helpful question.  To be helpful, I need to know if you have other devices such as an apple 30-pin to video cable, or an appleTV.   Any more information available?

  • Why can't I update my iPhone 4S software to the 5.0.2? I put off doing it for a little while and now it says that my iPhone software is up to date but it's the 5.0.1. I downloaded iTunes again but I don't know what else I can do! HELP!

    The battery drain issue is really bad for my phone and I thought I would finally get round to downloading the new software...but now I can't. It says it's up to date when I know it's not. I tried re-downloading iTunes but that didn't work, and of course deactivating firewalls and stuff. Can someone help me?

    5.0.2 has not been released, thus you can not upgrade.
    Stedman

  • Why can't I get an applet to run in the OC4J embedded server?

    i've set the class path and so on but still no dice.
    I keep getting the error message:
    load: class model.Applet1 not found.
    java.lang.ClassNotFoundException: model.Applet1
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    basic: Exception: java.lang.ClassNotFoundException: model.Applet1
    java.lang.ClassNotFoundException: model.Applet1
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    if anybody can help me I'll name my son after them
    Owen

    There's not enough info in your post to know what wrong. The stacktrace says it can't load the class model.Applet1, it's trying to get the class from the server, but it fails to get it because it cannot create a http connection.
    Try to find out where it's trying to connect to, check if that address is correct, and if the required class file can be loaded from that address.

  • HT201412 Why can't I get my iPad to go past the apple logo? The screen now has crazy lines all over it. Can't restore cause computer doesn't recognize it in device list.

    When I was updating iPad 2 to newest iOS I interrupted the update by doing a reset. Now I can't do anything. Won't even show up as device on my computer so I can do a restore. Worked perfectly before I tried to do the update. I thought the update was messing up cause it seemed frozen about 1/4 way on the line that advances when you do an update. I held down home and power buttons for about 10 seconds and now there are colored lines and such moving across the screen. Can't do a restore from backup cause device not recognized. Other iPads are recognized so it's clearly the particular iPad that has the problem. What can I do?

    Try and force iPad into Recovery Mode
    1. Disconnect the USB cable from the device, but leave the other end of the cable connected to your computer's USB port.
    2. Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to turn off.
    3.While pressing and holding the Home button, reconnect the USB cable to the device. The device should turn on.
    4. Continue holding the Home button until you see the "Connect to iTunes" screen. When this screen appears, release the Home button. iTunes should alert you that it has detected a device in recovery mode. Click OK, and then click Restore to restore the device.
    Note: Data will be lost. You may have to repeat the above many times.

Maybe you are looking for

  • Every time I try watch a quicktime video in any browser, it says that Quicktime plugin has crashed?

    It's been happening for quite some time, even before I upgraded to Lion. I have quicktime pro purchased, and I tried removing unnessary plugins, but it happens across chrome/safari/firefox. "The following plug-in has crashed: QuickTime Plug-in 7.7.1"

  • Captivate 7 - HTML5 Output and Interactions - coming to the front

    Hi all, Don't know if anyone else has had this issue.  I have found that when using inetractions with HTML5 output they automatically come to the front of the slide regardless of where you placed them in the story file.  I had used white rectangles t

  • Shut off 3G data roaming on N97?

    Ill be travelling soon, and i dont want to use any 3g Data roaming to reduce the costs. Anyone know how to completly switch off this on the N97?

  • InCopy CS4 Help is now live

    Even though InCopy CS4 hasn't shipped yet, weve just posted InCopy CS4 Help on the Web: http://help.adobe.com/en_US/InCopy/6.0/index.html We still have some work to do and bugs to fix, but we figured that youd get a lot of benefit from taking an earl

  • Did I break my MP3-player?

    Hi! I've been using my MP3-player as an USB-stick numerous times and thought I could as well use it for the Arch Linux USB installation... but as I did the dd if=...img of=/dev/sdb thingy I think I broke it Now I can't access it with fdisk as there's