Calendar first and second alerts switch on their own

Hi, I've been having this problem for a while with my iPhone 4, wondering if anyone can help.
I've tried looking if there's already a thread for this issue, but couldn't find one -- maybe I'm just not using the correct keywords.
Every time I set my first and second alerts on my calendar appointment and saved them, they seem okay, but 2 minutes later when I go back to the same appointment, the first and second alerts switch on their own, e.g.: I set first alert to go on 2 hours before and second alert to go on 1 hour before the appointment. Save. When I return 2 minutes later, first alert turned to 1 hour before and second alert 2 hours before.
Which is silly, since who needs their second alert to be farther than their actual appointment? Even iphone knows this and cancels the second alert altogether. By the time I've been alerted, I only have an hour to get ready for my next appointment.
Anyone has encoutered this problem and has successfully solved them? I've tried setting my default time zone under setting to local, and even turning off iCloud, to no success.
Any suggestion is greatly appreciated. Thanks.

I have found what appears to be a resolution to this issue, when I add an event and I select the event time, the date time scroller opens up allowing me to select the time of the event.
The issue occurs when I leave this selector expanded and continue to set the event properties. When the time selector is still open and you select the alert times, it swaps the alerts every time. When you collapse the event time selectors before choosing the alert times, the alerts are not switched.
This bug appears to be an issue with the scrolling selector form item if there is more than one open it appears to error out.
If you don't know how to collapse the event time selector, once you have selected the time, click on the date/time that is in red text just above it and it will collapse the selector.
Hopefully this fixes the issue for others, and it is ridiculous that this has gone one for so long, not a good way to keep your customers Apple, my wife was so aggravated at this that she was about to cancel her iPhone.

Similar Messages

  • My iphone calendar keeps changing the alert and second alert times I put in

    Ever since updating to 7.0.2, my Iphone calendar keeps changing the alert and second alert times I input for an event to different times. Why is it doing this and how can I fix it?

    Are you syncing your phone with iTunes and then with iCloud? This can cause duplicates. Sync with one or the other, but not both.

  • Alert and second alert when you create new event

    problem with alert and second alert when you create new event on calendar. but only in russian iphone language!
    this problem starts iOS 7 up to the present time iOS 8.1.1. this problem has been seen on iPhone 4,iphone 4s,iphone 5, iphone 5s,iphone 6,iphone6+

    Settings>General>Reset> Reset all Content and Settings
    standard fixing such bugs, but not in this time

  • Requirement to print data of first and second report of an ALV at once

    Hi,
    I have an interactive ALV report in which on double click of any of the record on first report, its details get displayed in second report. My requirement is to print all the data (of first and second report) at once.
    Kindly tell me how can I achieve this functionality.
    Regards,
    Seema Naharia

    Hi Seema,
    Try with this FM 'REUSE_ALV_HIERARCHICAL_LIST_DISPLAY'.   
    Regards,
    Sujatha B.

  • How to get the first and second quarter from CRT

    Dear Freinds,
                    I have one scenario , the Functional SPEC says Read the payroll results and from the CRT  get all the 4 quaters
    for the wage type /5UH  and sum them and then pass on the to field in the main strucutre.
    Iam using the FM HR_GET_PAYROLL_RESULTS
      CALL FUNCTION 'HR_GET_PAYROLL_RESULTS'
        EXPORTING
          pernr                         = fp_v_pernr
          permo                         = fp_v_permo
          pabrj                         = fp_v_pabrj
          pabrp                         = fp_v_pabrp
          actual                        = 'A'
        TABLES
          result_tab                    = i_payresult
        EXCEPTIONS
          no_results                    = 1
          error_in_currency_conversion  = 2
          t500l_entry_not_found         = 3
          period_mismatch_error         = 4
          t549q_entry_not_found         = 5
          internal_error                = 6
          wrong_structure_of_result_tab = 7
          OTHERS                        = 8.
    Iam collecting all the Actual Result (current result) values
    on the selection screen iam passing for month april (04 2008)
    so this falls in the second quater .
    the internal table   i_payresult is picking up only the second quater (01-04-2008 to 30/04/2008 )  ,but since on the selection screen iam pasing as other period (04 2008) the internal table  i_payresult  returing from the FM  (HR_GET_PAYROLL_RESULTS) only   picks the second quater,
    could any one let meknow how i can pick up the first quarter as well and add the first and second quater to mee the requirement .
    Please help me in this regard
    Thanks & regards
    maduri

    Hi Manoj,
                 Thank you for giving me idea for going further  regarding this problem , so my final question for this is
    as per FS they said they are going to enter the payroll
    area and the other selection as 04 2008 
    In order to achieve the first quarter , because 04 2008 means they are going to enter for the second quarter , the payroll results will come only for second quarter and not for the first quater , if they want to sum all the two quarters then they shouldnt pass on the selection screen   the dates as 04 2008, instead they has to pas
    01 01 2008 to 30 06 2008 , as there is no point in they passing as 04 2008 as we are going to consider from 01 2008 to 062008 .   Please correst me if am correct regarding the dates passing on teh selection screen
    or if the user enters on theslection screen still enter 04 2008 and will be  able to acheive the first quarter ??
    Please answer me this point before i can change the logic of the code and tell to my FO regarding this point.
    thanks & regards
    Madhuri

  • First and second letters reversed when I type

    Is anyone else finding this? When I type, quite frequently the first and second letters are reversed. It happens across programs, and only started after I installed Lion. I assumed it would be a temporary bug, but it persists, annoyingly.

    What version of FireFox are you using?  Try upgrading.
    https://discussions.apple.com/message/15121441#15121441

  • 2nd loop  combined the first and second statement lines...why?

    I wrote this program to calculate the price. I want to have users to enter the item name and price continuesly, then once the hit 'f', it will give them the total. I was able to enter the first item and price but then the second time around, this is what show on my screen:
    Item to purchase (enter F when finished): price for this is:
    It combined the first and second lines in one line. I can't figure out why.
    Please help.
    This is part of my code below:
    for (;;)
    String F ="F";
    System.out.print("Item to purchase (enter F when finished): ");
    item=sc.nextLine();
    if(item.equalsIgnoreCase (F))break;
    System.out.print("Price of this "+ item +" is: ");
    price=sc.nextDouble();

    Insert a sc.nextLine(); before the nextDouble.
    And insert a "\n" at final of System.out.print string.
    for (;;)
    String F ="F";
    System.out.print("Item to purchase (enter F when finished): \n");
    item=sc.nextLine();
    if(item.equalsIgnoreCase (F))break;
    System.out.print("Price of this "+ item +" is:\n ");
    price=sc.nextDouble();
    sc.nextLine();
    }

  • Display either ( first and second page ) or only second page on smart form

    Hi All,
    There is a requirement in which we get Program name and smart form name from table TNAPR.Now the smart form contains 2 pages.We have to check condition in the program and based on the condition we have to Display either ( first and second page ) or only second page of the smart form.
    Can any one please tell how to solve this .
    Tahnks in advance.

    SSFCOMPOP-SPONUMIV-->Number range number
    SSFCOMPOP-TDPAGESLCT-->Pages selected for printing
    Data: t_out type ssfcompop.
    If COndition.
    t_out-sponumiv = 'Number Range'.             " 1-2  or 2
    ESLE.
    t_out-sponumiv = 'Number Range'.
    ENDIF.
    OR:
    If COndition.
    t_out-TDPAGESLCT = '2'.        " Else Bot pages will print      
    ENDIF.
    Pass T_out to the function module.
    CALL FUNCTION 'FORM'
        EXPORTING
    *   ARCHIVE_INDEX              =
    *   ARCHIVE_INDEX_TAB          =
    *   ARCHIVE_PARAMETERS         =
    *   CONTROL_PARAMETERS         =
    *   MAIL_APPL_OBJ              =
    *   MAIL_RECIPIENT             =
    *   MAIL_SENDER                =
    OUTPUT_OPTIONS             = t_out
    *   USER_SETTINGS              = 'X'.
    Regards,
    Gurpreet

  • BT and Talk Talk to release their own You View Box...

    http://recombu.com/digital/news/bt-and-talktalk-wi​ll-launch-their-own-youview-boxes_M10594.html
    V interesting article
    Life | 1967 Plus Radio | 1000 Classical Hits | Kafka's World
    Someone Solved Your Question?
    Please let other members know by clicking on ’Mark as Accepted Solution’
    Helpful Post?
    If a post has been helpful, say thanks by clicking the ratings star.

    I have Netflix - how do you change server?
    Life | 1967 Plus Radio | 1000 Classical Hits | Kafka's World
    Someone Solved Your Question?
    Please let other members know by clicking on ’Mark as Accepted Solution’
    Helpful Post?
    If a post has been helpful, say thanks by clicking the ratings star.

  • Firefox and ie are starting on their own and keep opening multipul sessions.

    The initial problem started when I opened iTunes. When it opened firefox also opened and kept opening mutlipul sessions. I am running Window 7. I also have the same problem with Internet Explorer. At one point both programs had opened on their own and kept opening multipul sessions. I tried deleting firefos and reloading, but still have the same issue. I have ran my anit-virus and malware software, but neither showed any problems. I cannot get on the internet to look for solutions because of the prblem. When I try to type in a search another session pops up. I am currently searching for help from my office computer.

    Ran all the malware apps suggested and still have the same problem. Deleted and reloaded Firefox and Chrome...When I open them they keep rebooting....I can load and page for a short period of time and all of a sudden it reloads my home page...

  • My kids are getting older and they want to create their own accounts.  How do we share all the music we bought on my computer for their computers?

    We have bought music for many years on my account.  My kids are all getting older, have their own devices, but still want to access the music we bought as a family when they were younger.  How do I get their devices/accounts to all pair up within the cloud?  Is it even possible?

    You can't currently transfer content from one account to another account. As long as the tracks are on the computer's iTunes that they use/sync to, and your account is authorised on that iTunes, then they should be able to continue to use them.

  • VBA Merge PDFs - Error when first and second PDF are the same

    Using http://khkonsulting.com/2009/03/adobe-acrobat-and-vba-an-introduction/ as a guide, I am able to successfully merge multiple pdf's together into one document using VBA (Access mdb), except when the PDF being merged to has the same name as the next PDF.
    Here's my scenario.  An Access table is updated with a list of reports that need to be printed.  All of these reports are PDF's.  I loop thru this table and merge the PDF's according to an identifier, then print the group.  There are times
    when there are multiple copies of the same report for an identifier.  If the PDF being merged to has the same name of the PDF being merged, an error occurs.  How can I handle this situation?
    Sample data:  This identifier (ESO and Pulling) needs to merge these PDF's (Aaa.PDF) together which happen to have the same name.  Aaa.PDF is trying to merge Aaa.PDF and this throws an error.
    Aaa.PDF ESO  Pulling
    Aaa.PDF ESO  Pulling
    This identifier merges fine despite having the same PDF twice.  But the first PDF is not named the same.  Xxx.PDF is the first PDF and merges the next two into it.  The last two
    are named the same.
    Xxx.PDF  916  Pulling
    Bbb.PDF  916  Pulling
    Bbb.PDF  916  Pulling
    Code:
    pdfDoc1.Open (filesToMerge(1))
    numPages = pdfDoc1.GetNumPages()
    Set pdfDoc2 = CreateObject("AcroExch.PDDoc")
    Dim i As Integer
    For i = 2 To intNbr - 1
    pdfDoc2.Open (filesToMerge(i))
    If pdfDoc1.InsertPages(numPages - 1, pdfDoc2, 0, pdfDoc2.GetNumPages(), True) = False Then
    MsgBox "Cannot insert pages"
    End If
    pdfDoc2.Close
    Next i
    If pdfDoc1.Save(PDSaveFull, "C:\....\ReportPacket__" & Trim(CStr(intReportCount)) & "__" & ... & ".pdf") = False Then
    MsgBox "Cannot save the modified document"
    End If
    pdfDoc1.Close
    The pdfDoc1.InsertPages command fails, displays "Cannot insert pages", then displays "Method 'Close' of object 'CAccroPDDoc' failed.
    Thanks for any help or advice.

    Hi
    As far as I know, Access didn't provide such method. But I think you are able to achieve this goal through some 3rd party PDF component
    Hope this will help you.
    Best Regards
    Lan
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Acrobat XI alignment issue first and second line of paragraph

    Converting from html in Windows 7 - same result in IE and FireFox: First line of paragragh hangs about 3 pixels left and when I hit text edit the first line is in text box all buy itself with rest of paragraph in a separate text box. Had a co-worker who has Acrobat 9 reproduce and his is one text box as expected so issue is not in html code.
    Looks like a bug to me!

    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform 
    Be well...

  • IPhone was stolen, I was tracking it with the police then signal stopped, so the phone must be off, I have cancelled my contract so I don't get any charges, if someone has managed to whip the phone and are now calling it their own can i still track it?

    I was tracking my stolen phone, then the phone must have been switched off, it says on icloud that the phone is offline, i have cancelled my sim card so i dont get any charges, my phone had a passcode on it, if someone whipes the phone and tries to use it them selves can i still track the phone with icloud? also will icloud show me the location of the phone the moment someone tries to charge it(even though it wont get signal) or will icloud work if someone connects it to a computer?
    Thanks

    if the thief is experienced and wipes the phone you're out of luck.  this is a flaw with 'find my iphone' whats the point of it, if someone can just simply wipe the phone? lame. keep sending mesages to it.  if/when they finally get through then you'll get an email saying so. then immediately after getting an email, track it again, its likely still powered on and you can locate it. 

  • Someone is accessing my itunes account using my apple id and password. How do I stop this? I have changed my apple id and password, will that be sufficient? How do I keep this from happening? No one knows my id and password, my kids have their own.

    I have an Iphone 4s. I noticed today that someone has been downloading music using my apple id and password. No one knows my id or password. Not even my children. How can I stop them from using it? How can I keep it from happening again?

    Changing your password should be sufficient, that should be required to be entered to download anything from the store.
    In case it's the new U2 album that you are referring to, then that was given to free to everyone last month - you can remove the album if you don't want it on your account : http://itunes.com/soi-remove
    If not, and if you've been charged, then contact iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

Maybe you are looking for