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?

Similar Messages

  • 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 

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

  • Is there a way to recover calendar data lost in synchronization?

    I inadvertently clicked the wrong option during synchronization and have lost a lot of calendar data on my device and computer. Is there anyway to undo the synchronization or recover the data? Thanks!

    Only way is to use the desktop manager if you've backed up the data first.
    http://btsc.webapps.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB10339
    Also recommend going forward to use BlackBerry Protect if you don't have it setup already.
    http://us.blackberry.com/apps-software/protect/
    If you do have it setup, this is another way to restore data.
    Please click the Thumbs Up icon if this comment has helped you!
    If your issue is resolved, please click the solution button on the resolution!
    Every BlackBerry should have BlackBerry Protect, get it now! | Follow me on Twitter | Bring Back BBM Music!

  • Failure to sync contacts and calendar from Outlook through BlackBerry Link after update

    Hi everyone,
    I have both z10 and z30. I have been syncronizing my Outlook contacts and calendars to both of them through Blackberry Link. My z10 automatically updated several days ago and I lost everythiing on the phone including contacts, calendar, texts, phots, etc. And then the same thing happend to my z30...
    Now I am trying to sync my Outlook contacts and calendars to them through Blackberry Link as I always did but it turned out unsuccessful. It stops at 'Getting status from Blackberry calendar' and it also pops out a message saying 'BLACKBERRY-7D1B Sync was unsuccessful. An error has occurred during an attempt to access to device data.'
    I already tried to reinstall Blackberry Link and reset my phones but neither of these worked out.
    Please help. Thank you!

    This is exactly what I am dealing with. Blackberry Link will work great for awhile and then something happens and I can not sync my contacts. I have spent many hours and days trying to fix this to no avail. BB support has been great but I still go through a long process each time. This week I finally gave up and started using the Microsoft Hotmail Outlook Connector since my company does not offer Active Sync or Exchange. It works flawlessly. I would dedfinitely check it out. If you swith to a Widows Phone or Android this is one of the options they recommend you use.
    In a nutshell Link is awful and BB should be ashamed of the product they put on the market. I will only use it for syncing pictures and documents. Good luck!

  • Is it possible to recover limited data from the Calendar/Date Book?

    During a recent sync, my Blackberry 8330 deleted certain old calendar data (everything that wasn't a repeating event). Is there a way I can recover these old calendar entries without restoring a complete backup that would erase more recent entries? [I have reset the synchronization and configured it correctly going forward, but I really need some of the old calendar data]

    hmmm... if you must, AND if you have a recent backup of the BB, you can use ABC Amber Converter to MERGE two IPD backup files from your PC.
    http://www.processtext.com/abcblackberry.html
    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

  • Importing Contacts and Calendar Data

    Hi there
    I use a 5G 80gb Ipod on my Windows Computer and various Ipod programs to try to import the Contacts and Calendar Data from Microsoft Outlook and then use the data contained on Ipod is there any way that I can do the same from BT Yahoo Mail, Email folders please as I don't use Microsoft Outlook. Many thanks for any information or help you can give me on this.
    Kind regards

    Note: An upcoming release of BlackBerry Link will support full two-way synchronization.
    please to way sync  now

  • Calendar date prompts

    I am on 11.1.1.5. I am creating two calendar date prompts begin date and end date for an analysis. I want to be able to generate some kind error message or warning if the user tries to enter a date smaller than begin date in end date prompt. How can I do this?

    @Amith, no the link would not accurately satisfy the OP's need. What if the user chooses a valid date (i.e., in the allowable date range), but the report produces no records? The customized "No Results" message, would say, "Please choose a valid date value" and would be incorrect.
    user12301184 wrote:
    I am on 11.1.1.5. I am creating two calendar date prompts begin date and end date for an analysis. I want to be able to generate some kind error message or warning if the user tries to enter a date smaller than begin date in end date prompt. How can I do this?@user12301184, what you need to do is this:
    1) Create a small report that returns rows if the dates selected in the dashboard prompts are in the valid range, and does not return rows if the dates chosen are outside the range.
    2) In the dashboard, move a Section to the workspace and put your main report there. Click on Section>Properties>Guided Navigation and have OBIEE point to the small report created in step 1 with the radio button "Display when report returns rows" checked off.
    3) Move another Section to the workspace and put a Text object in the Section. Click Section>Properties>Guided Navigation and point to the same report, but this time choose "Dispay if the report returns no rows."
    4) Now in the Text object, put your customized message, "Please choose a valid date range."
    5) Finally, in the report itself, you can customize your "No Results" view to say, "There are no records to display for the date range selected."
    To summarize, according to the OP's criteria, there are two reasons why the report wouldn't show rows: one, specifically because of the invalid date range; and two -- not explicitly stated, but true nonetheless -- when the report itself produces no rows even though the date range is valid.
    My solution takes into account both scenarios. It doesn't give a potential wrong error message like so many applications do when the scenarios are not thought out completely.

  • How to restore my data from the blackberry protect back up archive

    Hi, my phone recently crashed, so I reloaded my OS & tried restoring my data from the blackberry protect app but noticed I could only restore from my last backup. I'd like to restore from another backup point in my archive & not my last. How do I go about it?

    Only backups which are displayed can be restored to your phone. If you don't see any older ones, something might have gone wrong with the backups being loaded to the site. Perhaps you have an older backup done with BlackBerry Desktop Software which you could reload?
    Cheers.  
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • Date difference when converting Calendar date to sql date

    I am trying to convert a Calendar date to sql date. The only problem in the conversion is sql date adds 1 month to the original date. Due to this my query results show different data than what it is suppossed to show.
    Here is my code
    Calendar startDate = Calendar.getInstance();
    startDate.set(2006, 10, 01, 00, 00); // 1-Oct-2006
    return (new java.sql.Date(date.getTimeInMillis()));
    on the last statement it adds a month to original date. So the final date i get is 1-Nov-2006.
    Any solution to this problem?
    Thanks
    Sameer

    Thanks everyone for quick response.
    I have read javadocs many times but that does not
    change the fact that Calendar and Sql date
    interpretation is different.No, it isn't. You are setting the moth to november when you set the month to 10, and november is what java.sql.Date is showing. So where is the difference? You are doing it wrong and that is why you get the wrong month.
    How the f do you think that the calender should know that you want october when you set it to november?
    My application is deployed through web service and
    the clients may access it through any programming
    langague (java, php, ec). Even I am testing it
    through java and php. Still doesn't matter. You need to subtract the month by one if you want to let your user use 1 for january.
    While testing it through java month is different but
    through php its correct.Read the docs.
    Can smoeone please give me the best possibel solution
    to this?see above

  • Adding days to a calendar date

    Hi, I have to insert pay periods in a database and need to be able to have a start and end date for each record. To add to the complexity and I have Exempt and Non-Exempt employees with different settings (that is not so important here). An exempt employee enters thier time in 2 week increments. So, as you will see in the code below, if I start on January 3rd of 2000 my start date will be incremented by 13 for each loop though the years and weeks. This works great! However, as soon as I start trying to set my endDate it doesn't work.
    Here's what happens. It starts out looking great where my endDate increment is 1 day shorted than the start date (to avoid overlapping). Then toward the bottom of my loop (60 years time 26 weeks) My pay period has a 2+ years span?? Makes no sense to me at all.
        public String loadPayPeriods(HttpServletRequest request,int isExempt) throws SQLException,Exception{
            StringBuffer query=new StringBuffer(500);
            int startYear=2000;
            int numYears=2060;
            int startWeek=1;
            int numWeeks=0;
            int increment=0,endIncrement=0;
            int exemptInt;
            Calendar startDate=Calendar.getInstance();
            Calendar endDate=Calendar.getInstance();
            String DATE_FORMAT = "yyyy-MM-dd";
            String YEAR_FORMAT = "yyyy";
            String MONTH_FORMAT = "MM";
            String DAY_FORMAT = "dd";
            java.text.SimpleDateFormat sdf=new java.text.SimpleDateFormat(DATE_FORMAT);
            if (isExempt==1){
                startDate.set(2000,0,3);
                endDate.set(2000,0,3);
                numWeeks=26;
                increment=14;
                exemptInt=1;
            } else {
                startDate.set(2006,0,1);
                endDate.set(2006,0,1);
                numWeeks=52;
                increment=7;
                exemptInt=0;
            // the end increment is one day less then the start increment so set that here
            endIncrement=increment-1;
            // setup the session for error handling
            HttpSession session=request.getSession(false);
            query.append(endIncrement);
            query.append("<br><br>");
            // loop through the number of years that we are inserting
            for(startYear=2000;startYear<=numYears;startYear++){
                // loop over the number of weeks in a year
                for(startWeek=1;startWeek<=numWeeks;startWeek++){
                    // set the start and end dates here
                    if (startWeek != 1){
                        startDate.add(startDate.DATE,increment);
                        // add the one first otherwise we tumble out of control by
                        // always being behind by one, unless this is the first week
                        endIncrement=increment;
                    // increment the end date by the number of days in the payperiod
                    // minus one.
                    endDate.add(startDate.DATE,endIncrement);
                    query.append("<pre>");
                    query.append("INSERT INTO Pay_Period_Table(");
                    query.append("Pay_Period_ID, ");
                    query.append("Pay_Period_Start, ");
                    query.append("Pay_Period_End, ");
                    query.append("Is_Active, ");
                    query.append("Is_Deleted, ");
                    query.append("Is_Exempt ");
                    query.append(") ");
                    query.append("VALUES ( ");
                    query.append("SYS_GUID(), ");
                    query.append("to_date('"+sdf.format(startDate.getTime())+"'), ");
                    query.append("to_date('"+sdf.format(endDate.getTime())+"'), ");
                    query.append("1, ");
                    query.append("0, ");
                    query.append(exemptInt);
                    query.append(")");
                    query.append("</pre>");
                    query.append("<br><br>");
                    try {
                        // get the connection
                        Connection dbCon=new DbConnection().getConnection();
                        // Create a Statement
                        Statement stmt = dbCon.createStatement();
                        // set the timeout here so that we don't get overlapping statements
                        stmt.setQueryTimeout(2);
                        // run the update/insert
                        stmt.executeUpdate(query.toString());
                        stmt.close();
                        dbCon.commit();
                        dbCon.close();
                    } catch (SQLException se){
                        session.setAttribute("errMessage","SQL Error: "+se);
                    } catch (Exception e){
                        session.setAttribute("errMessage","General Exception: "+e);
                    } finally {
                        // TODO: Finally statement
            return query.toString();
        }If anyone has any ideas I would LOVE to see what I am doing wrong. It baffels me and has been for several hours.
    Thanks!
    -- Nik

    Just giving a quick glance, I believe the problem is this line:
    endDate.add(startDate.DATE,endIncrement);If you are trying to say the endDate should be the startDate + endIncrement, the code should read:
    endDate.setTime(startDate.getTime());
    endDate.add(Calendar.DATE, endIncrement);DATE is a static, final field in Calendar that just tells add() which value to increment (static fields should be referenced through the class name rather than by an instance name).
    Let me know if I misunderstood what you were trying to do.

  • I lost my calendar data with Yosemite 10.10.2

    MacBook Air (late 2010) with installed OWC 480 gig SSD hard drive. Updated to Yosemite 10.10.2
    Only my calendar data lost. My husband's data is fine both for office and home. My new data is now in a file called 'Calendar' which I did not create. Old file was AMWhome. I changed the name from 'home' a year or so ago in order to differentiate from my husband's home file.
    Restoring data to the newly named 'Calendar' brings back the AMWhome name and data for about 3 seconds and then it is gone! I found these files in the trash.
    I have my data on another machine (MacBook Pro) which I took off-line and copied the data file. I tried to restore the data from the file from the MacBook Pro with the same result, the AMWhome appears and the data appears for about 3 seconds and is gone.
    So, now what can I do?
    I cannot empty the trash on my MacBook Air and cannot go online with my MacBook Pro.
    Help!
    Thank you,
    Adele Ward

    1. Are you positive you looked at the correct backup IPD file. If it was backed up during the upgrade, it would be named something like "loader backup**todays date**.ipd"
    They are normally saved to the My Documents folder.
    2. Do you sync to Outlook or any application on your PC?
    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

  • I have a large number of photos imported into iPhoto with the dates wrong.  How can I adjust multiple photos (with varying dates) to the same, correct, date?

    I have a large number of photos imported into iPhoto with the dates wrong.  How can I adjust multiple photos (with varying dates) to the same, correct, date?

    If I understand you correctly, when you enter a date in the Adjust Date and Time window, the picture does not update with the date you enter.  If that is the case then something is wrong with iPhoto or your perhaps your library.
    How large a date change are you putting in?  iPhoto currently has an issue with date changes beyond about 60 years at a time.  If the difference between the current date on the image and the date you are entering is beyond that range that may explain why this is not working.
    If that is not the case:
    Remove the following to the trash and restart the computer and try again:
    Home > Library > Caches > com.apple.iphoto
    Home > Library > Preferences > com.apple.iPhoto (There may be more than one. Remove them all.)
    ---NOTE: to get to the "home > library" hold down option on the keyboard and click on "Go" > "Library" while in the Finder.
    Let me know the results.

  • How can I get missing contacts, notes, calendar dates and reminders that are just on my old iphone onto the iCloud for transfer to my new iPhone upgrade?

    Dear wise & wondeful people:
    How can I get missing contacts, notes, calendar dates and reminders that are just on my old iphone onto the iCloud for transfer to my new iPhone upgrade? Half of my contacts, notes, ect. were on my iCloud so have happily moved to my new iPhone but the rest are completely resistant. For example, on my iCloud I have 14 missing contacts starting with the letter A alone, however they are happily viewable on my old iPhone 4S and won't budge over into the iCloud.
    There are also 3 notes missing yet still acessible on my onld iPhone 4S, the list goes on.
    Your help would be most appreciated. Thank you so much.
    BCHR

    Hi BCHR,
    If you are having issues transfering your content from your old iPhone onto iCloud so it can be transfered to your new iPhone, you may find the following articles helpful:
    iOS: Transferring information from your current iPhone, iPad, or iPod touch to a new device
    http://support.apple.com/kb/HT2109
    iCloud: Troubleshooting iCloud Contacts
    http://support.apple.com/kb/TS3998
    iCloud: Troubleshooting iCloud Calendar
    http://support.apple.com/kb/TS3999
    iCloud: Notes overview
    http://support.apple.com/kb/PH12081
    Regards,
    - Brenden

  • ITunes Calendar data doesn't match Outlook's.  How can I fix?

    I have a new iPhone and just recently discovered that the Calendar is not updating, 
    probably since the first time I synced.  And even then it was using old calendar data which 
    doesn't currently show up in Outlook.   (Contacts sync perfectly.)  Applecare took me 
    through their 1st and 2nd-level support troubleshooting and said they couldn't do anything more.  
    They suggested possible corruption of outlook.pst. 
    One glaring example: I used to have 3 calendars in Outlook: "Bridge", "Calendar" and 
    "Others".  I recently deleted all but the one called Calendar, but all 3 still show up in 
    iTunes, even though I've uninstalled/reinstalled iTunes twice.  Only "Calendar" shows up on 
    the iPhone, but it has old data.  I think the data it's displaying has not been refreshed 
    since 9/23/11, when I moved the outlook.pst file to a location in My Documents for easier 
    backup, but that doesn't really make sense since the Contacts update just fine.  (I've had 
    an iPad for about a year, and it's behaving the same as the iPhone now; the Calendar used 
    to update properly.)  Another possible clue: the iPhone shows two instances of one 
    particular recurring appointment.  I don't recall ever having two instances of it in 
    Outlook and wonder if that could be the problem.  I removed it altogether from Outlook and 
    that didn't help.
    I've done extensive testing with a new Windows user account and Outlook, and the calendar 
    syncing seems to work fine.  I've Googled "iPhone calendar won't update" and similar and
    haven't found anything that works for my situation.
    I'm running Office 2003 on Windows XP.  I do NOT use Outlook for mail.

    I was having the same problems after downloading 10.4.1 IStore would only download half way then nothing attempted reinstall no goood checked the Diagnostics with IPad connected, indicated no errors. more than a few hours browsing possible solutions. Found one stating 'Remove all Itunes connected software, i.e. Bonjour, ITunes, Safari etc from PC via the Uninstall Safely Feature and ReInstall. Hey Presto it worked now no issues.
    Good Luck. I am using Windows 7.
    That's my problem exactly, but I can't find the: ''Uninstall Safely Feature and ReInstall''. Where is that??
    Thank You

Maybe you are looking for

  • PCI Data Acquisition and Signal Processing Controller driver

    I've installed win 8.1x64 on my HP Probook 450 G2 but I am missing the PCI Data Acquisition and Signal Processing Controller driver. Can you please help? Thanks, Leontina This question was solved. View Solution.

  • Problem with non central adapter engine

    Hi All, I have a peculiar issue with adapters on non central AE. We are able to get messages through the sender soap adapter on non central AE to the IE. But messages going to the receiver soap adapters on non central AE are failing in IE with 401 Un

  • HT1420 where can i view all my authorized devices and then deathorize one of them

    Where can I view my authorized devices and then deauthorize one of them without deauthoriveing all of them ?

  • Why Graphics.drawImage() can't work?

    Hi Veterans, I met some problems when I create an image by calling the Graphics.drawImage() method. Firstly, I created an off-screen image by calling the method frame.createImage(800, 640), then I was drawing some graphical elements on the the graphi

  • Software turn off doesnt work

    Very often, when I want do shut down my new macbook pro by using the command "shut down" in the apple menu, it doesn't turn off. My background image stays there, the mouse pointer is there and moveable, but there is no dock anymore and the computer d