Calendar date wrong with monthly appointments in O...

After 2 or 3 Nokia software upgrades, this problem STILL isn't fixed, even after multiple reports.  Why?!? 
Looking at the other related posts on this topic, it sure seems to be related to more than just my phone model (6085).
Using Vista (Enterprise), Outlook 2007, and the latest Nokia PC Suite (7.1.26.0), recurring monthly calendar appointments are wrong on the phone. I sync only PC --> phone, and the first occurance of a monthly meeting shows up properly, but for subsequent occurances, the phone gets the date wrong, usually a few days late. For instance, a "3rd Friday of every month" meeting in Outlook 2007 will cause this error. It is easy to reproduce.
I deleted one bad one, did a sync (and confirmed it was gone from the phone). I added the recurring meeting back (such as 3rd Monday of every month), and sure enough, the first calendar item was right, but the second one showed up 2 or 3 days late. It seems to make the 19th of every month (for example) instead of the 3rd Monday. ERROR! 
They are 1 or 2 hour meetings -- not "all day events". I do not use any alternate calendars.
This is rather annoying, and based on the number of posts on this problem, it would seem to be pretty ubiquitous. It certainly deserves a fix!!! Please!!!

Hi I have same issue on Noia 2630 / XP / latest PC Suite version (NZ time UTC+12:00).  Outlook and Phone appear to sync ok but when you check txts and calendar entries in Nokia Communication Centre the dates and times are wrong by 1 day (24hrs) if they were created at the PC end of things.  TXT's created on the phone do appear with the correct date when viewed in the Communication Centre, however calendar entries created in the phone appear with the wrong date when viewed in the Communication centre. Go figure... 
If you ignore Nokia Communication Centre it looks ok.
I think this is the reason I gave up on Nokia PC suite a few years back - it never works quite the way you think it should - it fools you in to thinking it is useful but there is always some basic issue that makes it so frustrating...
Andrew 

Similar Messages

  • Calendar dates wrong on Blackberry

    Hello all,
    We have an interesting issue and it is completely random.
    BB9630 with Verizon, Notes 6.5.6
    BB OS v4.7.1.40
    When the user accepts a calendar invite it's correct on the Notes client (does not matter if she accepts on BB Device or on client).
    However it randomly puts the invitation into another date on the BB device.  When you attempt to open the event (on the wrong day) you get a conflict message;  but there is no conflict that you can relate it too.
    It does not matter who sent the invitation,  this happens from internal and external people.
    There is no pattern to when it happens,  it appears to be completely random.
    Luckily this is not impacting the dates on the Notes Client,  it appears to be correct there.
    We have completed all the usual stuff;  hard reset,  wipe and re act. , OS upgrade, etc...
    Has anyone run into this issue?

    Hello all,
    We have an interesting issue and it is completely random.
    BB9630 with Verizon, Notes 6.5.6
    BB OS v4.7.1.40
    When the user accepts a calendar invite it's correct on the Notes client (does not matter if she accepts on BB Device or on client).
    However it randomly puts the invitation into another date on the BB device.  When you attempt to open the event (on the wrong day) you get a conflict message;  but there is no conflict that you can relate it too.
    It does not matter who sent the invitation,  this happens from internal and external people.
    There is no pattern to when it happens,  it appears to be completely random.
    Luckily this is not impacting the dates on the Notes Client,  it appears to be correct there.
    We have completed all the usual stuff;  hard reset,  wipe and re act. , OS upgrade, etc...
    Has anyone run into this issue?

  • I just set up my windows 7 pc with icloud.  I have 2 calendars on icloud with different appointments.  How do I get them all on one claendar shared with ipad

    I just set up my windows 7 pc with icloud and connected it to my ipad and iphone.  I noticed that I have 2 icloud calendars on my pc.  Neither one of them has all my events on it, so I have to look at both to see what is going on.
    How do I get everything on one calendar?????

    Hello
    I think i find the problem, the Microsoft Proxy. If you use a Microsoft Proxy then it's not going with the iCloud Drive Client under Windows. I turn off the proxy in the IE and then it's going with the iCloud Drive Client.
    The problem is, the iCloud Drive Client take the IE proxy (if it set in the IE), in other sync client like Dropbox oder OneDrive you can select the proxies (no proxy, default proxy, manually proxy) and this is in the current version of the iCloud Drive client not possible.
    I hope Apple make this possible in a future release of the Windows client also with the option to change the location to store the data (i think under C://user/profiles is not so good for user with a SSD-harddrive).
    regrads
    Steve

  • Achieving chronological sort on a date column with month function

    Hello all ,
    I have a a date column(start_date) on which I applied 'MONTHNAME' function to extract the month name
    out of the date . i.e. 4/24/2013 will return 'Apr' .
    While trying to achieve a sort on this , its returning alphabetical sorting , i.e.
    aug , apr , dec , jul ,jun etc .
    So achieving a chronological order , I created a logical column 'sort_month' . In the expression section,
    I wrote , month(start_date) . so this return numeric values of months , i.e . 1,2,3, 4 etc.
    Now , in 'start_date' column properties i have selected this 'sort_month' column ,
    sort on column . So , this should add a chronological sorting order to start_date column ?
    well its not working !
    Am I missing anything here ?

    Logical column general properties and set 'sort order column' to months
    Edited by: Srini VEERAVALLI on Apr 23, 2013 1:55 PM

  • 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.

  • I'm trying to add the system date with a Label. What is wrong with the code

    import java.util.*;
    import javax.swing.*;
    public class CurrentDateApplet extends JApplet
         Calendar currentCalendar = Calendar.getInstance();
         JLabel dateLabel = new JLabel();
         JPanel mainPanel = new JPanel();
         int dayInteger = currentCalendar.get(Calendar.DATE);
         int monthInteger = currentCalendar.get(Calendar.MONTH)+1;
         int yearInteger = currentCalendar.get(Calendar.YEAR);
         public void init()
              mainPanel.add(dateLabel);
              setContentPane(mainPanel);
              dateLabel.append(currentCalendar.get(Calendar.HOUR) + currentCalendar.get
                        (Calendar.MINUTE);
    }

    As for what's wrong with the code, it would be easier if you said: it doesn't show the date (it does this instead), it doesn't compile (I get this message) etc.
    Anyway I'll assume you want to display the time in a label...
    dateLabel.append(currentCalendar.get(Calendar.HOUR) + currentCalendar.get
    (Calendar.MINUTE);This won't compile: the parentheses are mismatched, and there is simply no such thing as append(). So we could trydateLabel.setText("" + currentCalendar.get(Calendar.HOUR) + currentCalendar.get(Calendar.MINUTE));This wroks, but looks pretty nasty and it's not how you are supposed to format dates and times. Here's the unofficial party line, nicked from one of jverd's posts:
    Calculating Java dates: Take the time to learn how to create and use dates
    Formatting a Date Using a Custom Format
    Parsing a Date Using a Custom Format
    From those links you should be able to find those applicable to times like this: http://www.exampledepot.com/egs/java.text/FormatTime.html
    Using this approach you would end up with something like:import java.text.Format;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    import javax.swing.JApplet;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    public class CurrentDateApplet extends JApplet
        private Date date;
        private JLabel timeLabel;
        private JPanel mainPanel;
        public void init()
            mainPanel = new JPanel();
            timeLabel = new JLabel();
            mainPanel.add(timeLabel);
            setContentPane(mainPanel);
            date = new Date();
            Format formatter = new SimpleDateFormat("HH:ss a");
            timeLabel.setText(formatter.format(date));
    }

  • How to increase calendar boxes to show all appointments in Monthly View

    We have a busy family schedule and like to print a traditional calendar with appointments to put on frig.  In the "monthly" view, is there a way to enlarge date boxes in order to see all entries rather than the "+3 more" etc. At the least, I could do a screen shot, crop and print as a word doc.  Thanks for any help!

    This is exactly what's happening to me. I've been able to recreate this on a Touch also with OS4. It's not occuring on OS3. I've only been able to recreate the problem on July 30th and August 1st calendar dates for some reason. It may be happening on other dates also but I havn't been able to find any.
    To recreate the problem go into day view on the calendar. Go to August 1st and create a calendar entry. Then touch the left arrow to go back a day then touch the right arrow to return to august 1st and your entry is invisible. It's still there because if you go forward a day then go back a day it shows.
    I've been using list view only now to avoid missing these invisible entries.

  • The contacts and calendar data on my iPod touch will not sync with my Mac

    I have a 2nd generation ipod touch, and an iMac running iTunes 8.2.1.
    I have been away from my mac for a few months and have entered a lot of contact and calendar info into my ipod touch.
    Now, when I try to sync the contacts and calendar data on my ipod touch with my mac, the data will not sync to my mac.
    Similarly, for the last couple months, the contact and calendar data on my ipod touch has not been able to sync with my mobileme account.
    I cannot afford to lose the contact and calendar data on my ipod touch.
    Can anyone kindly inform me how to fix this syncing problem without losing such data?

    DGKSA wrote:
    I ended up entering the data onto my Mac, then nuking my iPod touch with a restore.
    So, there is no need to respond to my question.
    You can also mark your post as "solved" if you solved your problem on your own.
    Only the original topic poster has the option to mark replies as either Helpful or Solved or to not mark a reply at all. The originator can also end the discussion by marking the topic as "answered," which displays a green star at the top of the topic page to let everyone know that the topic contains valid helpful information.
    copied from "Terms of Use"

  • To date calculations with roling calendar

    Hello,I am relatively new to Essbase and we are in the middle of building an inventory analysis database. We have 5 dimensions:Accounts,Time,Version,Customer,ProductThe time dimension spans from Year-Season-Quarter-Month-Week. Includes annual totals for 4 years. I have a rolling calendar and I do not use a scenario member to designate the year. I also have an alternate roll-up representing a fiscal year.My time dim looks somthing like this:TIME..Y2001...Fall....Quarter1.....Jan01......WK 2003-10-13..Y2002...etc, etcI am trying to come up with a YTD, STD, and MTD number for base sales_unit data. I should be able to get that number no matter what period selected in a report. For example if I am looking at Week 10-13-2003, I need to see what my MTD, QTD, and YTD numbers are for that date-member, same goes for upper level members in time. I can't use DTS because it only (seems to) work for the generation it's assigned too. Furthermore with DTS, I need the date results for my average inventory calc too.So the only way I could get this to works was with a VERY long series of if statements for each time member.Here are a few examples: For Month: IF (@ISMBR(Month01-2001)) @SUMRANGE(Sales,WK2001-02-10:WK2001-03-03); ENDIFFor Quarter: IF (@ISMBR(Quarter1-2001)) @SUMRANGE(Sales,WK2001-02-10:WK2001-05-05); ENDIFFor Season: IF (@ISMBR(Fall-2001)) @SUMRANGE(Sales,WK2001-02-10:WK2001-08-04); ENDIFThis works but data retrieval times are too slow (16 minutes) for dynamic calcs and the calc script runs for more than 6 hours.It's obvious to me that this will give me the correct results but it will not work because of performance. Any suggestion on how to deal with a to date number with reasonable calc times using a rolling calendar would be graetly appreciated!Russell Krauss, VF Inc

    I've run into similar problems and one thing I have given into is that there is no one solution. What I have been using is multiple alternate roll-ups using shared members. My Time dimension will have three or four sub-roll-ups (i.e. "By Month", "By Week", etc.) I do this by sharing the base level members (daily data). I'm not sure if it would be possible to do what you are looking to do in one roll-up because weeks will inevitably over lap months. I will check back however to see if anyone else has suggestions. One more thing to consider, if your time dimension is sparse (which is probably not a good idea in this case) but if it is, you could use attribute dimension to group some of your dates, particularly the seasons. Good luck!

  • What is wrong with my 2 month old Mac book pro retina?

    I bought a new 13 inch Mac book pro Retina at the end of May 2013. I have been to the apple store and called apple care several times. Now things are very bad. It would crash and give me a white screen every so often but over the last week things have gotten very bad. It will crash with the white screen, browsers and applications all close unexpectedly - it started with firefox then safari, then mail then face book, then adobe and finally iphoto and picassa. I did send in the reports. Also if I had a picture in i-photo my picassa program is set up to grab all pictures - recently any pictures that have been grabbed it says the files are corrupted. I keep having trouble with the air port utility in that it can't find the wireless network and or the time capsuel even though it can be wireless or plugged in by ethernet. I called  apple care and got this very nice tech guy and he tried many different fixes and said he thought the hard drive would need to be replaced so got an appointment to take my computer in. They ran two tests and said everything is fine with the computer it must be the software. So now I'm supposed to get apple care to help me try and save all my data on flash drives! Can't back it up on time capsuel cause he said it would just back up the problem. So this seems overwhelming and I'm so upset. Well, then I thought about it and my old mac book in which all the data and software was transferred from hasn't been erased as I was having so many issues I hadn't done that yet. So my question is if it was the software, wouldn't it be making my older mac book do the same thing? What is wrong with my New Computer? As of tonight, I can't even open anything it gives a quick flash of trying to open and closes so the computer is totally useless - so no idea how to get the data off that is most recent. Apple says they cannot help cause it is a software program but now I have a 2 month old computer whish is useless. Any thoughts?

    Call Apple and make a appointment.
    You have 3 months of care and up to 3 years with paid AppleCare, let them handle it and bring everything in.
    Good Luck

  • How to sync calendar data older than 1 month?

    How to sync data from calendar older than 1 month? (from computer to phone) Impossible to get my data from beginning of november on calendar on Iphone. What did I miss?

    If you are syncing calendar events direct with Outlook via the iTunes sync process, there is a setting for this under the Info tab for your iPhone sync preferences with iTunes below the sync calendars section.

  • 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)

  • What's wrong with my mobile data network?

    I've had this 2nd hand iPhone 4 for almost 2 months and everything has been working perfectly until today. I was using viber and sending messages to my friends and it suddenly stopped working and i have no idea why, i thought i just lost my 3G for a while so i waited a few hours for it to come back up, this started around 3pm and it's 12am right now and it's still not working... Everything else worked such as skype, twitter and the internet but for some reason i couldnt send and receive messages on viber and imessage. I also didn't get any notifications from ANYTHING during the whole time until i connected to my wi-fi at home which i then got flooded with messages, tweets and etc.
    I think that theres something wrong with my mobile data network and i dont really know what it is since everything was working fine this afternoon and it just suddenly stopped? Connecting to Wi-fi makes everything work fine and i actually receive notifications and am able to send and receive messages to my friends on viber and imessage.
    Can anyone help me?
    My carrier is CSL and it has unlimited data if anyone n

    I havent contacted my carrier and i really dont think they will be able to help since i go to them every month to pay my phone bill and they can barely speak english...
    I've turned my phone on and off 3 times and ive also reseted my network settings

  • Have family plan with 250 data which I almost use each month.  Going on vacation and will be on the road for two weeks.  Should I up my data for a month then change back.  Is it worth it or should I just run over and pay the extra 15 per gig?

    have family plan with 250 data which I almost use each month.  Going on vacation and will be on the road for two weeks.  Should I up my data for a month then change back.  Is it worth it or should I just run over and pay the extra 15 per gig?

    Hello mlazaretti. Vacation time is awesome. (Especially a road trip!) Since you will be going out for two weeks, you never know if having extra data may come in handy. I highly recommend switching to the next tier up so this way you have more data. This way it is only $10.00 more versus $15.00, and you dont have to worry about overages. Then change back at the start of the next billing cycle.
    If you need help making this change let us know! Have a safe trip!
    NicandroN_VZW
    Follow us on twitter @VZWSupport

  • My calendar on my iPhone 4 erases all data over a month old except for recurring events.  How Do I get it to keep the info and not erase calendar events?

    My calendar on my iPhone 4 erases all data over a month old except for recurring events.  How Do I get it to keep the info and not erase calendar events?

    Settings>Mail, Contacts, Calendars>Calendars>Sync>All Events.
    Note: If you're using a work Exchange account, the administrator my have restricted your options for this setting.

Maybe you are looking for

  • Wma to mp3 converter

    I downloaded a conversion program "wma to mp3 converter" to be able to listen to wma music files in my computer. However when I click on the file, just the programmers' codes appear, nothing else. How can I activate the converter program? That is, ho

  • Heterogeneous Connectivity to MSSQLServer2000 from Oracle 10g ver10.1.0.2.0

    Hi Gurus! I have oracle 10.1.0.2.0 (personal edition) running on WinXp Professional Edition MS-SqlServer 2000 developer edition on the same machine I have preinstalled microsoft ODBC for SQL Server .. I have configred MSSQLDSN for my sqlserver databa

  • Graphs, how to have a fixed background matrix

    I am in the process of developing some code to remotely control some spectrum analyzers. Each system will consist of 4 spectrum analyzers. The customers wants the LabVIEW software to look and function just like the software that runs on their display

  • How to change the position of a menu?

    Hello, I'm a new dreamweaver developer so I would like to ask you few questions. If I have a sprite menu that is positioned by default in the left border of the page, how can I change it's position inside the page?With css?How? I'd have to put inside

  • Safari: hidden IFRAME getting tab focus

    Hi, I have a page. There is a section 'sidebar' where bulleted text is there. Just after first bullet there is a hidden IFRAME. That go visible on clicking of that bullet text. My problem is with Safari Browser in Mac and WindowsXP. When we press the