IOS7 Calendar bug (Wrong Date)

While trying to put a specific shift on my work calendar, I found quite the annoying bug that I've been able to replicate.
Create an event that begins September 30 at 6pm and ends October 1 at 6am. Now go back to say, change the times to 6:30pm-6:30am. You'll notice when you click edit, that the edit page lists the start date at "Oct 1, 2013" and the end date as "October 1, 2013". If you click "Oct 1, 2013" it brings up the roll that has "Mon Sep 30" highlighted. If you scroll to "Sun Sep 29" the start date changes to "Sep 30, 3013".
Not fun.

Oh, NO! Another problem w/calendar!

Similar Messages

  • PJC Calendar setDate Wrong date format. Date change failed?

    Forms 10.1.2 using forms demos pjc code.
    The calendar pjc I added to my form works except I can't initialize it with a date. If I try to initialize a date it always produces 'Wrong date format. Date change failed.' error.
    In a post-query trigger, I initialize the calendar's date using:
    SET_CUSTOM_PROPERTY('PJC.CALENDAR',1,'setDate',to_char(:lead.date_received,'DD.MM.YYYY'));
    In the java console, this yields:
    Warning: Wrong date format. Date change failed.
    Warning: Wrong date format. Date change failed.
    I get the same result when using a hardcoded date like:
    SET_CUSTOM_PROPERTY('PJC.CALENDAR',1,'setDate','01.12.2006');
    What is the flaw in my incantation?

    Hello,
    This is the syntax used in the calendarpjc Forms demo:
        call the setDate method on the calendar PJC via the PL/SQL built in
        set_custom_item_property
        convert Oracle date to String recognised by Java
      procedure setDate(d in date) is
      begin
        set_custom_property(lGlobals.hCalendar,1,'setDate',to_char(d,'Mon DD, YYYY'));
      end;     Francois

  • Date Picker Calendar Show Wrong Date Information Dec/Jan 2014-2015

    When using a Date Picker, the offered Date for January 1st 2015 is a Friday!  It supposed to be a Thursday!
    You can move to February, and return to January again, and it will correct itself.  
    This happens in Office 2007 and 2010
    What's gone wrong?
    IT will also offer the wrong December dates.
    Is there a fix please?

    Re:  Bad date
    Some remote possibilities...
      Your computer's clock has an incorrect date
      The wrong year is entered somewhere as the first day in 2016 is a friday.
      You have the wrong date system selected 1900 vs. 1904 or vice versa.
      You have a 3rd party (non MS) Date Picker that is programmed incorrectly.
      You have Office 2013 (nothing seems to work there)
    There are alternatives and I offer one for Excel...
    a free excel add-in date picker ("Get Your Own Date")
    (no ads, no trackers, no cookies, no registration)
    https://jumpshare.com/b/O5FC6LaBQ6U3UPXjOmX2
    Jim Cone
    Portland, Oregon USA

  • IOS7 calendar crashes for dates before 1904

    Hello
    I updated my iphone 4S to iOS7 (then 7.0.2) and noticed a strange bug with the new Calendar app.
    1. Open your calendar, go to the "year" view and scroll up to year 1905 (if you repeatedly scroll up, that should take just a second)
    2. Notice that before the year 1905, the calendar data will be erroneous:
         Year numbers don't appear anymore in the view
         In 1903 and before, years don't have a month of December
         Any attempt to display details of a month will crash the app
    I just tested that with my wife's newly purchased 5c and the problem seems to be identical.
    Is anybody else experiencing this? Can we notify Apple in any way?
    Alex

    I think it actually has other implications in other applications. For instance, in iTunes. Any movie with Release Date on or before 31 Dec 1903, such as Meliès "A Trip to the Moon" or Edwin Porter's "The Great Train Robbery" has a corrupted release date in iTunes. If I type in 1903-12-31, then the release date says 40-02-05.
    If I type in 1904-01-01, then I get a BLANK in the release date column. But if I type in 1904-01-02, only at that date do I get the proper release date 04-01-02 displayed. And all subsequent release dates.
    Anything before 1904-01-02 is INCORRECT.
    Any thoughts? Suggestions?
    Glenn

  • Calendar app wrong date/days

    i have a fully updated iphone 5. My calendar app is showing the date on the wrong day of the week from January 2015 onwards. In yearly view it is OK but is wrong in monthly view. Also in monthly view September 2014 is missing and I have 2 x October 2014. Can anybody help????

    Hey Naomi1111,
    Thanks for the question. I understand that you are experiencing a weird issue with the calendar application on your iPhone 5. To troubleshoot, let’s first try restarting the Calendar application:
    iOS: Force an app to close
    http://support.apple.com/kb/HT5137
    Next, let’s check your Date & Time settings to make sure they are configured correctly:
    iOS: Troubleshooting issues with date and time
    http://support.apple.com/kb/ts3920
    And finally, if your issue persists, we’ll want to back up and restore your iPhone as new:
    Use iTunes to restore your iOS device to factory settings
    http://support.apple.com/kb/ht1414
    Thanks,
    Matt M.

  • Java.util.Calendar calculates wrong date when any duration is added

    Hi friends,
    I am trying to calculate the date through java.util.Calendar object and getting wrong value. Let me explain the scenario -
    Scenario1:
    I have taken start date and added some duration to that and expecting a new date which should be calculated as (start date+ duration). The value is as below -
    start date = 2012-01-09 (9 January 2012 )
    duration = 1year, 1month, 20 days
    new date = 2013-02-28 ( 28 February 2013)
    *Here new date I am expecting is 2013-03-01 (1 March 2013).
    Scenario2:
    I have taken another set of values as below -
    start date = 2011-02-15 (15 February 2011)
    duration = 1year, 1month, 15days
    new date = 2012-03-30 (30 March 2012)
    *Here new date is as expected.
    Scenario1 data is giving me wrong result. Please let me know if any more information is required. Any help will be appriciated. Thanks in advance.
    Edited by: user560316 on ९ जनवरी, २०१२ ६:२३ अपराह्न
    Edited by: user560316 on ९ जनवरी, २०१२ ६:२४ अपराह्न

    It all looks pretty straightforward to me. Try running the following code:
    public class TestCalendar {
        public static void main(String[] args) {
            java.util.Calendar myDate = java.util.Calendar.getInstance();
            java.text.DateFormat df = new java.text.SimpleDateFormat("dd MMMM yyyy");
            myDate.set(2012, java.util.Calendar.JANUARY, 9);
            System.out.println("Start date = " + df.format(myDate.getTime()));
            myDate.add(java.util.Calendar.YEAR, 1);
            myDate.add(java.util.Calendar.MONTH, 1);
            myDate.add(java.util.Calendar.DAY_OF_MONTH, 20);
            System.out.println("End date = " + df.format(myDate.getTime()));
    }This gives the following result:
    Start date = 09 January 2012
    End date = 01 March 2013

  • Java.util.Calendar returning wrong Date object

    Example: This was my scenario last night. A server in California has date/time of 'Mon Aug 18'. Current time in Indiana is 'Sun Aug 17'. I use Calendar.getInstance(TimeZone.getTimeZone("America/Indiana/Indianapolis")) to return a Calendar instance. I then call the getTime() method on that instance. It should return a Date object relating to that particular time zone. It will not. It defaults back to the server time. When I print out the Calendar instance everything is good, correct date, correct time,etc. WHY WON'T THE getTime() return the correct java.util.Date???
    Following is the output was run today so the dates happened to be the same so focus on the Time. Output includes Server time, new Calendar values, and the Date returned by calendar instance getTime(). See that the Calendar is getting the correct Time.
    SERVER DATE=Mon Aug 18 15:52:13 CEST 2003
    CALENDAR INSTANCE=java.util.GregorianCalendar[time=1061214732975,areFieldsSet=true,areAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInfo[id="America/Indiana/Indianapolis",offset=-18000000,dstSavings=0,useDaylight=false,transitions=35,lastRule=null],firstDayOfWeek=2,minimalDaysInFirstWeek=1,ERA=1,YEAR=2003,MONTH=7,WEEK_OF_YEAR=34,WEEK_OF_MONTH=4,DAY_OF_MONTH=18,DAY_OF_YEAR=230,DAY_OF_WEEK=2,DAY_OF_WEEK_IN_MONTH=3,AM_PM=0,HOUR=8,HOUR_OF_DAY=8,MINUTE=52,SECOND=12,MILLISECOND=975,ZONE_OFFSET=-18000000,DST_OFFSET=0]
    Date from getTime()=Mon Aug 18 15:52:12 CEST 2003

    I got it worked with using DateFormat.parse !
    The trick is to instantiate a new Date object as a result
    of parsing out of 'localized' date string.
    with below code :
    Calendar localCal = new GregorianCalendar(TimeZone.getTimeZone("America/Los_Angeles"));
    localCal.set(Calendar.DATE, 25);
    localCal.set(Calendar.MONTH, 7);
    localCal.set(Calendar.YEAR, 2003);
    localCal.set(Calendar.HOUR_OF_DAY,6);
    localCal.set(Calendar.MINUTE, 38);
    localCal.set(Calendar.SECOND, 11);
    Calendar sinCal = new GregorianCalendar(TimeZone.getTimeZone("Asia/Singapore"));
    sinCal.setTimeInMillis(localCal.getTimeInMillis());
    int date = sinCal.get(Calendar.DATE);
    int month = sinCal.get(Calendar.MONTH);
    int year = sinCal.get(Calendar.YEAR);
    int hour = sinCal.get(Calendar.HOUR_OF_DAY);
    int min = sinCal.get(Calendar.MINUTE);
    int sec = sinCal.get(Calendar.SECOND);
    String sinTimeString = date + "/" + month + "/" + year + " " + hour + ":" + min + ":" + sec;
    System.out.println("VIDSUtil.hostToLocalTime : time string now in SIN time : " + sinTimeString);
    java.util.Date sinTime = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss").parse(sinTimeString);
    System.out.println("time in SIN using Date.toString(): " + sinTime.toString());
    It prints out :
    VIDSUtil.hostToLocalTime : time string now in SIN time : 25/7/2003 21:38:11
    time in SIN using Date.toString(): Fri Jul 25 21:38:11 PDT 2003
    (Ignore the PDT, because Date.toString() defaults where the JVM is running)

  • Mac calendar birthdays wrong date

    Just upgraded Mountain Lion to 10.8.2.  All birthdays from contacts are showing correctly except 2 which show as one day early and one year less in the age.  They show correctly in my iPhone and in contacts.  Any suggestions?  Thanks

    Hey Naomi1111,
    Thanks for the question. I understand that you are experiencing a weird issue with the calendar application on your iPhone 5. To troubleshoot, let’s first try restarting the Calendar application:
    iOS: Force an app to close
    http://support.apple.com/kb/HT5137
    Next, let’s check your Date & Time settings to make sure they are configured correctly:
    iOS: Troubleshooting issues with date and time
    http://support.apple.com/kb/ts3920
    And finally, if your issue persists, we’ll want to back up and restore your iPhone as new:
    Use iTunes to restore your iOS device to factory settings
    http://support.apple.com/kb/ht1414
    Thanks,
    Matt M.

  • Iphone 4s calendar bug -- wrong email address appears

    Hi,
    One of my email accounts used in the calendar function has a strange new name appear for it:
    jastinationalisticability_huangarian
    I have removed that email account and readded it to the iPhone.  I've also changed the account's passwords multiple times.
    However, nothing seems to work to remove the above strange name from that account in the Calendar. The Calendar keeps associating that email account with the above name.
    Anyone know how to fix this??
    THANKS!!!

    In another thread, this issue has been discussed by a number of people and it's assumed that it might be a hacker. Delete the email accounts from your phone and see if the calendar still has that name in it. You might sign back into the accounts one by one and see if it then comes back. Also change all passwords and security questions. I wish I could help more. I have the same problem.

  • Ical birthday calendar wrong dates

    Hello,
    I have an issue with iCal regarding the birthday calendar.
    It works pretty fine syncing with address book, but it ads the birthday obviously twice. The birthday itself and the day before the birthday. When refering the URL in iCal it directs me to the Contact card of the person and there is only the correct date.
    Why does iCal do that? And more important, how can I solve that problem and remove all the wrong dates? Because it is anoying to have birthday reminders for people twice. It also looks pretty dumm in the notification center of Mountain Lion. With two birthdays of the same person in a row. Mostly it has one year difference as well, so the same person turns lets say 29 the one day and 30 the other.
    Any ideas?

    Thanks for your help.
    I've just checked forward into 2014 and I see that it doesn't re-occur  then.
    Strange, it's just one person and it's only happening in 2013. Their birthday is on 31st March and there's and entry for 31st Mar and 1st April.
    I'm not going to worry about it anymore.

  • Calendar List view shows entries under the wrong date

    I just upgraded to iOS4 and finding that my calendar entries are appearing under the wrong date in the calendar list view when I am viewing two calendars.
    - List view is ok when viewing 1 calendar
    - Day and Month views are ok at all times (ie: viewing single or multiple calendars)
    - I have 2 Exchange accounts
    - Calendar entries are appearing in the correct order, but under the incorrect date heading.
    - When I intially added the Exchange accounts the calendar list view was fine at first (I could see both calendars correctly in list view) but after a short time later it became screwed up.
    Anyone else experience this?

    Same problem here since my upgrade to iOS4 - but I only noticed today.
    I have 3 calendars set up:
    Gmail (Exchange)
    UK Holidays (iCal)
    Birthdays
    The exchange calendar is always wrong but the other two are correct when my exchange calendar is switched off.
    It has mucked up my scheduling a bit for the next month. I only became suspicious when I noticed the Scottish Bank Holiday Monday at the beginning of August was showing on FRIDAY, 30th of July!

  • Calendar app icon is displaying the wrong date

    For some reason on my iPhone's homescreen the icon for the Calendar app has today started displaying the wrong date.
    It should show today's date, Monday 6th but instead it reads Sunday 5th.
    What confuses me is that the phone does know the date is Monday 6th as the lock screen shows it correctly and also when I actually load the Calendar app it starts on the right date. Also, when I load the multi task bar the Calendar app icon there is correct. See the attached photo, which shows the Calendar app on the home screen (faded, middle left) displaying yesterdays date Sunday 5th, while the app icon in the multi task bar is correct, Monday 6th.
    Syncing the calendar with my iMac does not correct the error. Equally, turning the phone off and on again has not sorted it.
    Does anyone have any idea what might be causing the fault? And more importantly how to correct it?
    Thanks.

    Thanks for the suggestion DaVBMan, sadly it didn't work. The only thing that did work was to wait until midnight and it corrected itself. In the mind of the phone it lived a whole day twice and then skipped one completely in order to get back on track. Very odd and also I have since discovered it has happened to a few of my friends too.
    It's not happened again so I have no idea what so ever what caused it. Fingers crossed it never recurs.

  • Blackberry Calendar Sync - Wrong Events Dates

    Hi
    I recently wiped my entire calendar on my phone as it was a mess. I composed a new calender with certain re-occuring series events on outlook calendar 2012.
    The syncing porcess to my Blackberry Curve 8900 works fine, no issues raised by Desktop manager yet when i look at my phones calendar there are random events that have been placed on wrong dates?!
    EG: an event for the 01.10.12 will be showing on the 02.10.12. When i click on this event on my phone and view 'whole series' the date shows for the 01.10.12 to re-occur every few week - so why its on the 02.10.12 i have no idea - Interestingly though when i click on the same event but 'view occurance' it shows the incorrect date of 02.10.12. These events are 'entire dat events'
    Outlook is defintely correct and i have not put in this occurance for the 02.10.12 so why is it syncing to my blackberry as wrong occurance date but correct series information? bizzare. Really frustrating.
    When i look at future series dates for this incorrect occurance there doesnt seem to be a pattern, the other series are correct. However throughout the year there could be up to 15 diffierent examples of this happening on random dates.
    Ive looked at several formums and tech help. Im using OS5 operating system.
    Any workaround, fix? Does anyone else experience this issue?
    Thanks
    Adam

    Hi,
    I have the same problem. Doesn't seem a big problem for other users, there are very few threads on this. 
    Have you found any solution yet? 
    Adam

  • Yosemite calendar week printing problem (wrong dates)

    When I try to print a week in calendar on OS X Yosemite the day which is automatically selected and the range are wrong.
    Having set up with Monday as starting day in print view it starts with Tuesday, besides taking the wrong date (week before).
    Workaround is to temporarily change to "week is starting on sunday" but this gives wrong view on screen.
    Hermann

    Apple doesn’t routinely monitor the discussions. These are mostly user to user discussions.
    Send Apple feedback. They won't answer, but at least will know there is a problem. If enough people send feedback, it may get the problem solved sooner.
    Feedback
    Or you can use your Apple ID to register with this site and go the Apple BugReporter. Supposedly you will get an answer if you submit feedback.
    Feedback via Apple Developer

  • Wrong Dates in Sent Folder

    After doing a clean install of 10.5 and importing all of my mail messages from my .mac account, I noticed that many of the messages in my sent folder had the wrong date. Apparently they were marked with the date on which I first synchronized my 10.5 Mail with my .mac account. I've since tried to rebuild that folder, and when I do that, those problematic messages show up as sent "Today" at the time I rebuilt, even though many of them are nearly a year old. Any suggestions as to what might be causing this? I've read several threads regarding problems with the sent folder, but none with this specific date problem.
    Thanks.
    One more thing...
    All sent message show up with the correct date when I access the sent folder online through .mac.
    Message was edited by: James Casey1

    I tried several experiments and noticed that if you move the messages in "sent messages" with wrong dates to another folder (for example to the "inbox") then they get back to their correct date.
    Apparently rebuilding mail boxes at this point doesn't fix anything, as if you move the messages into "sent messages" again then the date gets wrong again.
    Funny enough, when the message is back into "sent messages" and appears there with the wrong date, if you make a text search FROM THE INBOX on all folders in the search results these messages will appear as located in "sent messages" with THE RIGHT DATE!!! Doing the same search when you are in "sent messages" will show the message with the wrong date!!!
    So I am now sure there is BIG BUG in Mail about this.
    So unless Apple fix this, I guess the only way is to put all the messages from your "sent messages" with wrong dates in a folder where they appear with the correct date, save or export your "sent messages" folder messages, delete entirely your "sent messages" folder, and reload all you "sent messages" again.
    However I have no safe procedure for this and it won't prevent the bug to reoccur later on...

Maybe you are looking for

  • Transfering itunes from XP to new Leopard computer AND synching iPhone help

    I'm a complete Mac OS novice and have purchased a new iMac. I have been using WinXP and own an iPhone. I have backed up my itunes library (from my XP computer) onto multiple dvds. How do I transfer my library onto the mac AND keep my contacts from my

  • There were errors installing the software

    Mac Mini G4 1.25GHz / 512MB / 40GB / Combo / Modem. Ser: YM6***TAB <Edited by Moderator: Personal Info - Please See Terms of Use> Originally Mum's Mini was "doing strange things", so I had to drive 150 miles to try to sort it out. First I downloaded

  • This edition do not qualify for upgrade - SQL Express 2005

    Hello,  I hope somebody would be able to help me.  I am trying to upgrade an old Microsoft SQL Server 2005 - 9.00.3042.00 (Intel X86)   Feb  9 2007 22:47:07   Copyright (c) 1988-2005 Microsoft Corporation  Express Edition.  This one is SP2 as listed

  • Evaluation Template - having trouble manipulating it

    Hello, I am trying to make a questionnaire form for my class using the Evaluation template provided by Pages. I have completed the document, but there is a lot of empty space at the beginning of every page. No matter what I try, I can not get the spa

  • Can't get music to downl

    I had 73 song on my zen but I lost them now i can't download any more keep getting error. can anyone help?