My reminders have gone wrong since uploading ios7

Since uploading ios7 my reminders were all wrong. So I wiped them to reset them. However now I can't set anymore. It doesn't look like it should when I open reminders it doesn't have date or any other options. It's very annoying as I use them to remind me to take medication. Anyone know what to do? I can't see anyway out help!

First thing to try is to reset your device. Press and hold the Home and Sleep buttons simultaneously until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.
Did you tap on a blank line to create a new reminder?

Similar Messages

  • ALV list with empty data - What could have gone wrong?

    Dear experts,
    I'm currently working on some codes to display data (the tables involved really do contain data), but when the codes are executed, the ALV list does not contain any data in it (only the column headers are fine).
    What could have gone wrong? I've been staring at the codes for hours now. Please help. Appreciate any help at all. 
    Displaying ALV data with REUSE_ALV_LIST_DISPLAY:
    form display_alv_data .
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
    *     I_INTERFACE_CHECK              = ' '
    *     I_BYPASSING_BUFFER             =
    *     I_BUFFER_ACTIVE                = ' '
          I_CALLBACK_PROGRAM             = w_prog
    *     I_CALLBACK_PF_STATUS_SET       = ' '
    *     I_CALLBACK_USER_COMMAND        = ' '
    *     I_STRUCTURE_NAME               =
    *     IS_LAYOUT                      =
          IT_FIELDCAT                    = gt_field_cat[]
    *     IT_EXCLUDING                   =
    *     IT_SPECIAL_GROUPS              =
    *     IT_SORT                        =
    *     IT_FILTER                      =
    *     IS_SEL_HIDE                    =
    *     I_DEFAULT                      = 'X'
    *     I_SAVE                         = ' '
    *     IS_VARIANT                     =
    *     IT_EVENTS                      =
    *     IT_EVENT_EXIT                  =
    *     IS_PRINT                       =
    *     IS_REPREP_ID                   =
    *     I_SCREEN_START_COLUMN          = 0
    *     I_SCREEN_START_LINE            = 0
    *     I_SCREEN_END_COLUMN            = 0
    *     I_SCREEN_END_LINE              = 0
    *     IR_SALV_LIST_ADAPTER           =
    *     IT_EXCEPT_QINFO                =
    *     I_SUPPRESS_EMPTY_DATA          = ABAP_FALSE
    *   IMPORTING
    *     E_EXIT_CAUSED_BY_CALLER        =
    *     ES_EXIT_CAUSED_BY_USER         =
        TABLES
          T_OUTTAB                       = gt_final
        EXCEPTIONS
          PROGRAM_ERROR                  = 1
          OTHERS                         = 2.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    endform.                    " display_alv_data
    Retrieving data from the database tables into the internal table:
    form retrieve_data .
      " For internal table 1
      SELECT ekbe~ebeln
             mseg~mblnr
             ekbe~belnr
             ekbe~ebelp
             ekbe~matnr
             ekbe~menge
             ekbe~dmbtr
             ekbe~werks
             mseg~lgort
             mseg~lifnr
             lfa1~name1
      FROM ekbe INNER JOIN mseg ON ekbe~ebeln = mseg~ebeln
                INNER JOIN lfa1 ON mseg~lifnr = lfa1~lifnr
      INTO CORRESPONDING FIELDS OF TABLE gt_1
      WHERE mseg~bwart = '101' AND      " Movement type: Goods Receipt
            ekbe~vgabe = '2' AND        " Transaction / event type for Invoice Verification Number
            ekbe~matnr IN s_m_num AND
            mseg~lifnr IN s_v_num.
      " For internal table 2
      SELECT ekbe~ebeln
             makt~maktx
             eket~eindt                 
      FROM ekbe INNER JOIN makt ON ekbe~matnr = makt~matnr
                INNER JOIN eket ON ekbe~ebeln = eket~ebeln
      INTO CORRESPONDING FIELDS OF TABLE gt_2
      WHERE eket~eindt IN s_d_date.
      " For internal table 3
      SELECT ekbe~ebeln
             ekko~bedat
             ekko~ekorg
             ekko~ekgrp
             ekko~bukrs
      FROM ekbe INNER JOIN ekko ON ekbe~ebeln = ekko~ebeln
      INTO CORRESPONDING FIELDS OF TABLE gt_3
      WHERE ekko~bedat IN s_p_date AND
            ekko~ekorg IN s_p_org AND
            ekko~ekgrp IN s_p_grp.
      " For the final internal table
      SORT: gt_1, gt_2, gt_3.
      LOOP AT gt_1.
        MOVE-CORRESPONDING gt_1 TO gt_final.
        READ TABLE gt_2 WITH KEY gfs_ebeln = gt_1-gfs_ebeln BINARY SEARCH.
        MOVE-CORRESPONDING gt_2 TO gt_final.
        READ TABLE gt_3 WITH KEY gfs_ebeln = gt_1-gfs_ebeln BINARY SEARCH.
        MOVE-CORRESPONDING gt_3 TO gt_final.
        APPEND gt_final.
      ENDLOOP.
    endform.                    " retrieve_data

    Dear forumers,
    I apologize for the rather late reply. The SAP server that I've been working on was down since Thursday evening and I wasn't able to debug much into the codes. Nevertheless, I really do appreciate all of your inputs and help here.
    Rob,
    I've just debugged my codes again and found out that in the first place, there is no data contained in the internal table gt_1 at all. My rough guess is because I've misused the INNER JOIN wrongly here (see code comments below):-
      SELECT ekbe~ebeln
             mseg~mblnr
             ekbe~belnr
             ekbe~ebelp
             ekbe~matnr
             ekbe~menge
             ekbe~dmbtr
             ekbe~werks
             mseg~lgort
             mseg~lifnr
             lfa1~name1  " this line should probably be commented out
      FROM ekbe INNER JOIN mseg ON mseg~ebeln = ekbe~ebeln
                        INNER JOIN lfa1 ON lfa1~lifnr = mseg~lifnr   " this line should probably be commented out - the table join here is not based on table ekbe at all
      INTO CORRESPONDING FIELDS OF TABLE gt_1
      WHERE mseg~bwart = '101' AND     
            ekbe~vgabe = '2' AND 
            ekbe~matnr IN s_m_num AND
            mseg~lifnr IN s_v_num.
    Next, I commented out certain lines further and found that there is still no data contained in the internal table gt_1 again, as follows:-
      SELECT ekbe~ebeln
             mseg~mblnr
             ekbe~belnr
             ekbe~ebelp
             ekbe~matnr
             ekbe~menge
             ekbe~dmbtr
             ekbe~werks
             mseg~lgort
             mseg~lifnr
             " lfa1~name1
      FROM ekbe INNER JOIN mseg ON mseg~ebeln = ekbe~ebeln
                        " INNER JOIN lfa1 ON lfa1~lifnr = mseg~lifnr
      INTO CORRESPONDING FIELDS OF TABLE gt_1.
      " WHERE mseg~bwart = '101' AND     
            " ekbe~vgabe = '2' AND 
            " ekbe~matnr IN s_m_num AND
            " mseg~lifnr IN s_v_num.
    There should be data contained in table ekbe here. What could have really gone wrong now?

  • Since uploading ios7 my ipad acts as if I am accessing the internet with a modem instead of fios?  Any suggestions???

    SInce uploading ios7 on my ipad 2 using verizon fios service my response time surfing the web acts as if I am using a modem.  Any ideas how i can fix this??

    Try this...   Settings>General>Reset>Reset all settings.
    This has helped many users get their devices back "up to speed".

  • Can't open apps since uploading ios7

    I can't download apps since uploading iOS 7

    Can you access the App Store, and view Apps? Or do you have problems opening the App Store?
    If you can view Apps and find one to download what happens when you try to buy/install?  Do you get an error message?
    Regards,
    Steve

  • Since uploading iOS7.03 my iPhone 4S cannot get WiFi and Bluetooth is not working properly.

    Why will my iPhone 4S not work properly since the iOS7.03 upgrade? No WiFi (greyed out, button will not move) and Bluetooth not working.

    it's a well known issue.... wifi and bt died in many 4s.... one is mine..

  • Sounds have gone missing since upgrading to ios7

    I have noticed that most of the custom sound files and ring tones that I had available and was using on my iphone 5 have since dissappeared since upgrading to IOS7.   They were available on the list of sounds that appear in "settings>sounds" but they are just no longer listed there.  Some of the sounds do appear when I do a search on iphone but they no longer appear in the list of sounds I can select for different events and people.
    Why has this happened and is there a fix?
    I can't believe an apple update would cause a problem like this, but its happened.
    Thanks.

    Problem solved!

  • Upgraded to 10.8.3 on Mac mini and things have gone wrong

    Ok I am using a late 2009 mac mini 4 gig computer and been on Mountain Lion 10.8.2 for some time with nothing going wrong with my computer at all. I decided to update to the new 10.8.3 and have left it a few days but nothing is resolving. Things have slowed down and getting the spinning wheel happening alot, screen freezes for a few seconds and then everything is fine then freezes again. My itunes keeps stopping in songs and starting again, it is like the computer is doing catch up or its thinking about things. It is getting me down and dont know what to do.
    I have repaired disk permissions and ran clean my mac, everything was fine before I put this 10.8.3 on my mac. Can someone please tell me how do I put 10.8.2 back on ? I read where someone said on line that reinstall 10.8.3 but do not know how to do this.
    If someone can help I would really appreciate this

    Thank you very much Barney for your reply, I have got rid of my clean my mac as sometimes I thought it was more a hinderance than a cure and I went to disk utilities and clicked verify diak and within 5 minutes it says the following
    Incorrect number of file hard links
    Checking catalog hierarchy.
    Checking extended attributes file.
    Checking volume bitmap.
    Checking volume information.
    The volume Mac Mini 10.8.3 was found corrupt and needs to be repaired.
    Error: This disk needs to be repaired using the Recovery HD. Restart your computer, holding down the Command key and the R key until you see the Apple logo. When the OS X Utilities window appears, choose Disk Utility.
    I really feel like I am in the deep end here, please can you explain to me what I do to get this sorted out step by step pleas ? as never had any problem with this computer since I bought it and dont really know what I am doing.
    So I understand I need to press command and r key, once I have done that do I need to go back in to utilities and verify disk and repare permission, hope you can explain to me  like Im stupid please :-)

  • It's all gone wrong since installing Leopard

    Hi, I've got a few problems that have started since I installed Leopard, so after trawling through the forums and doing little bits, I thought I'd consolidate them all into one post and hopefully get all the answers together in one thread! I hope someone can help with suggestions, thanks in advance for your time. Here goes:
    1) Crashes: I have never had a crash in over 3yrs until this week when I installed Leopard and now I've had about 7 crashes in 4 days. I think they are kernel related but may also be related to:
    2) Free space: since installing Leopard my hard drive free space has gone from 30GB down to 7GB. Have emptied my trash, performed some routine maintenance to remove logs etc, and run Monolingual to remove localization files, so I'm now up to 16GB free, but there should be more.
    All my music and photos are on an external drive, except for a 10GB backup music file which I had on Tiger...
    3) Having run OmniDiskSweeper, I am a bit confused about where Leopard puts music. In users/username/music/itunes, there is an 11GB internal library (where my backup folder is) and 8GB of artist folders. Do I need these if all my music should be on my other drive (and downloads are all backed up in the internal library)? They don't show up in Finder.
    The same backup music file is also showing in private/var/root/music, so is it duplicated?
    3a) I have also read that you can delete some private/var files that OmniDiskSweeper finds but am a bit wary about deleting things I don't understand. Can somebody clarify what is safe to get rid of and what I need to keep?
    4) When I looked at Console I have a recurring log from com.applesystemstarter 18 that says "The process has forked and you cannot use this Corefoundation functionality safely. You MUST exec ( )." What is this? Is it causing the crashes?
    5) I don't think it is related to any of this but at the same time as installing Leopard I upgraded my memory from 512MB to 2GB. Have run Rember and it says everything is ok with the new memory, but thought I'd mention it in case it helps!
    I have run disk utility and it says the disk is ok, but everything is very sluggish, slow and lots of spinning beachball action. I guess it's down to the hard drive space and it's certainly improved since freeing up the extra 10GB. But my Mac is acting more like a PC right now and I don't like it. PLEASE HELP!!!
    Thanks again, sorry for the long post.

    There are no guarantees, but following this procedure when installing updates and upgrades on your Mac, or even re-installing them, will go a long way towards avoiding unpleasant after effects and ‘post-update stress disorder’.
    It is also worth noting that it is an extreme rarity for updates to cause upsets to your system, as they have all been extensively beta-tested, but they may well reveal pre-existing ones, particularly those of which you may have been unaware. If you are actually aware of any glitches, make sure they are fixed before proceeding further.
    So before you do anything else:
    If you can, make a full backup first to an external hard disk. Ideally you should always have a bootable clone of your system that enables you to revert to the previous pre-update state.
    Turn off sleep mode for both screen and hard disk.
    Disconnect all peripherals except your keyboard and mouse.
    1. Repair Permissions (in Disk Utility)
    2. Verify the state of your hard disk using Disk Utility. If any faults are reported, restart from your install disk (holding down the C key), go to Disk Utility, and repair your startup disk. Restart again to get back to your startup disk.
    At least you can now be reasonably certain that your system does not contain any obvious faults that might cause an update/upgrade to fail.
    3. Download the correct version of the COMBO update from the Apple download site.
    The Combo updater of Leopard 10.5.8 can be found here:
    http://support.apple.com/downloads/MacOS_X_10_5_8_ComboUpdate
    If you prefer to download updates via Software Update in the Apple menu (which would ensure that the correct version for your Mac was being downloaded), it is not recommended to allow SU to install major (or even minor) updates automatically. Set Software Update to just download the updater without immediately installing it. There is always the possibility that the combined download and install (which can be a lengthy process) might be interrupted by a power outage or your cat walking across the keyboard, and an interrupted install will almost certainly cause havoc. Once it is downloaded, you can install at a time that suits you. You should make a backup copy of the updater on a CD in case you ever need a reinstall.
    Full details about the 10.5.8 update here: http://support.apple.com/kb/HT3606
    More information on using Software Updater here:
    http://support.apple.com/kb/TA24901?viewlocale=en_US
    Using the Combo updater ensures that all system files changed since the original 10.4.0 are included, and any that may have been missed out or subsequently damaged will be repaired. The Delta updater, although a temptingly smaller download, only takes you from the previous version to the new one, i.e. for example from 10.5.7 to 10.5.8. Software Update will generally download the Delta updater only. The preferable Combo updater needs to be downloaded from Apple's download site.
    Now proceed as follows:
    4. Close all applications.
    5. Unplug all peripherals except your keyboard and mouse.
    6. Install the update/upgrade. Do not under any circumstances interrupt this procedure. Do not do anything else on your computer while it is installing. Be patient.
    7. When it ask for a restart to complete the installation, click restart. This can take longer than normal, there are probably thousands of files to overwrite and place in the correct location. Do nothing while this is going on.
    8. Once your Mac is awake, repair permissions again, and you should be good to go!
    If your Mac seems slightly sluggish or ‘different’, perform a second restart. It can’t hurt and is sometimes efficacious!
    9. Open a few of your most used applications and check that all is OK. In this connection please remember that not all manufacturers of third party applications and plug-ins, add-ons, haxies etc, will have had time to do any necessary rewrites to their software to make them compliant with the latest version of your operating system. Give them a weeks or two while you regularly check their websites for updates. This applies particularly to plug-ins for Safari 3.
    N.B. Do not attempt to install two different updates at the same time as each may have different routines and requirements. Follow the above recommendations for each update in turn.
    Lastly, Apple's own article on the subject of Software Update may also be useful reading:
    http://docs.info.apple.com/article.html?artnum=106695
    If you are updating Safari (or just have):
    Input Managers from third parties can do as much harm as good. They use a security loophole to reach right into your applications' code and change that code as the application starts up. If you have installed an OS update and Safari is crashing, the very first thing to do is clear out your InputManagers folders (both in your own Library and in the top-level /Library), log out and log back in, and try again.
    So, disable all third party add-ons before updating Safari, as they may not have been updated yet for the new version. Add them back one by one. If something goes awry, remove it again and check on the software manufacturer's website for news of an update to match your version of Safari.
    Most errors reported here after an update are due to an unrepaired or undetected inherent fault in the system, and/or a third party add-on.
    Additional tips on software installation here:
    http://docs.info.apple.com/article.html?artnum=106692
    To reiterate, Input Managers reach right into an application and alter its code. This puts the behavior of the affected application outside the control and responsibility of its developers: a recipe for problems. That's not to say that issues absolutely will ensue as a result of Input Managers, but you, as a user, must decide. If the functionality of a specific Input Manager or set thereof is really important to you, you may well choose to assume the associated risk.
    Again, the advice is to remove all Input Managers from the following directories:
    • /Library/InputManagers
    • ~/Library/InputManagers
    especially prior to system updates (they can always be added back one-by-one later).

  • My fonts in internet explorer have gone haywire since downloading later version of adobe reader

    my fonts have all gone haywire after downloading newer version of adobe reader. some are huge and others are tiny. some things fit on the page but others dont

    > Do you know how I can get IE to open the create version of ADOBE?
    De-install Adobe Reader 8 and re-install Adobe Acrobat 5.

  • Printer problem and where Apple have gone wrong....

    Using a Canon ip100 printer with Lion now gives an error message every time I want to print - says printer is not connected. Have to disconnect usb then reconect and it works.
    Also occasionally getting error message telling me I've just shut my computer down and it will restart - when I haven't!
    I'm not used to things not working properly on my Mac!
    I love progress, but am really disappointed with Apple with this release. It has lost it's clean simplicity, it's lost it's intuiative use, it's got bugs, amateurish graphics, childlike icons and feels generally dumbed down. - perhaps Macs are no longer for the discerning creative user, with Apple now prefering the profits associated with appealing to the masses. Despite decades of excellence under Steve Job's leadership is possible for even Apple to get it wrong - just like Microsoft did with Vista!  A pity - I don't feel I can enthuse about my Mac anymore.....

    With regards to the iP100, check that you are using v10.42.3.0 of the printer driver. This information can be found in System Information > Hardware > Printers.

  • Everything has gone wrong since started using BBM -box re certificates keeps appearing.

    Recently I started using BBM then everything went wrong!! I kept getting messages about trust certifcates and eventuall key stores. Explored online help tried lots of things. Ended up completely wiping everything.
    Now have re-syncronised organiser with my outlook but from contacts only phone numbers transferred!!  Calendar only partially transferred. Still box keeps popping up about certifcates . How can I phone for advice!!

    For technical assistance, you would call Virgin and have the issue escalated up to the BlackBerry technical support.
    I would advise that you wipe the device again and restore your backup, using the BlackBerry Desktop Software, to regain your contacts and calendar. Did you make a backup of the device before your initial wipe?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Some things have gone wrong

    There seems to be a light purple spot on my iPod. It is not located on the screen but near the scroll wheel. It will not rub off. Also my back light is wigging out. I have it set on 2secs and have the brightness all the way down. This is to conserve battery life. Every time I take my iPod off of hold, the back light springs to life at full brightness then flickers for a while then going off. As I look at it now, the little lock icon does not show up when I put my iPod on lock. Can anyone help me?

    I agree with epsilon delta and the others. Forums do seem to be the place where people come to look for answers or to ask questions.
    I have had my 16GB 3GS for around 4-5 weeks now, when I first got it it had 3.0 on it, I was asked when I connected the iPhone to iTunes for the first time if I wanted to update the software to 3.1 which I did with no problems whatsoever. At a later date I updated to 3.1.2 and I have also had no problems whatsoever with this update too. I think you should update especially has 3.1.2 has been out a little bit now.
    A bit of advice I would give is perhaps not update to the latest software version in the future straight away. What I do is wait a little while and keep checking back on this forum to see if there is any problems reported etc. But bear in mind like epsilon delta said:
    'Taking into account the millions of iPhone users worldwide, the number of people reporting problems on this website is a very very small percentage'

  • Export Dimensions Have Gone Wrong

    Hi All,
            I was exporting a load of music samplers, just a simple JPEGs at 1400x1400px against a wav file, as found here.
    http://www.youtube.com/watch?v=oZdm5o7C7_0&feature=related
    For the last 3 done, for some reason it made the image all small on the Quicktime export, as seen here:
    http://www.youtube.com/watch?v=DWLlbadoGN4&feature=related
    I've started several new projects DV-NTSC48kHz (which is what I used initially, but still the same thing.  The only thing I remember doing wrong was accidently exporting as 640x480, instead of 480x640, and then tested it again at the proper resolution.  It's a Quicktime Export, and because it keeps happening for every new project created any audio/JPEG image combination, is there a more global setting I'm missing here?
    Much appreciated
    Digiman9999

    DV-NTSC is 720 x 480.

  • What could have gone wrong?

    I installed PHP 4.4.6 + Oracle instant client 10g(win32) + Apache 2.0.59 (Win32) on my Windows XP Professional Version 2002 SP2.
    I enabled php_oci8.dll in my php.ini. Also put tnsname.ora under C:\instantclient_10_2.
    I loaded phpinfo.php and it shows "OCI8 Support      enabled"
    However when I use below script to test:
    <?php
    if ($c=OCILogon("user", "pw", "db")) {
    echo "Successfully connected to Oracle.\n";
    OCILogoff($c);
    } else {
    $err = OCIError();
    var_dump($err);
    print "\nError code = " . $err;
      print "\nError message = "  . $err[message];
      print "\nError position = " . $err[offset];
      print "\nSQL Statement = "  . $err[sqltext];
      echo "\nOracle Connect Error " . var_dump( OCIError() );
    ?>
    The output is:
    Interactive mode enabled
    bool(false)
    Error code =
    Error message =
    Error position =
    SQL Statement = bool(false)
    Oracle Connect Error
    Please help enlighten what I should do to move on.
    Many thanks,
    PHPNewbie                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Thanks cj. I think I'm getting closer.
    After replaced php_oci8.dll, I retested a simplified script:
    if ($c=OCILogon("user", "pw", "kirin"))
    { echo "Successfully connected to Oracle.\n";
    OCILogoff($c); }
    else { $err = OCIError();
    var_dump($err);
    #echo "\nOracle Connect Error " . var_dump( OCIError() );
    ?>
    The the output is:
    Warning: ocilogon() [function.ocilogon]: OCIEnvInit() failed. There is something wrong with your system - please check that ORACLE_HOME is set and points to the right directory in C:\work\test.php on line 3
    Warning: ocierror() [function.ocierror]: OCIError: unable to find error handle in C:\work\test.php on line 6
    bool(false)
    I can't understand both warnings, isn't that ORACLE_HOME is not needed for instant client, For the second warning, isn't that OCIError does not need to pass any handle?

  • Quite suddenly several things have gone wrong with my itouch

    I have refurbished iTouch 8GB we bought from Applestore. I got it last X-mas and everything was fine until now.
    First, like others, my yahoo mail isn't working correctly in that it won't always send. I get a message that it doesn't recognize my password. I have to constantly manually re-enter my password to send. It is an intermittent problem. Probably Yahoo's fault from what I gather?
    Next, even though I have everything set to start up iTunes when I connect the iTouch to my computer (a MAC), iPhoto starts up.
    Next,  synching with iTouch and ical is no longer working. I tried the method described in another forum, of deleting the contents on my computer and starting over, etc., but now I have double events of everything, and am still missing some things that I was missing before.
    Also, my iTouch now defaults to my "work" calendar instead of "home" calendar when I enter an event. So I always have to manually enter "home" everytime I enter an event.
    This has all occurred one right after the other in the last few weeks. Could it be an updated iTunes that is causing this? I tried looking up iTunes help but just get an endless "searchiing" signal and the spinning beachball on my computer.
    Thanks!

    Although I cannot help solve all of your problems, I will do my best.
    Yahoo mail problem: can't really help you with that. Although when iCloud opens up this fall, it may be easier to use an @me.com email adress.
    iPhoto opens when you connect your iPod: Open iPhoto, then on the menu bar click "iPhoto", then click "preferences" when the windows appears, you will see "connected camera opens". Select "no application".
    If you want your home calender selected by default, go to settings>mail, contacts, calenders> scroll down to the default calender option.
    Good luck,
    Matt

Maybe you are looking for