Problem with hotmail calendar display

Problems with hotmail calendar display.

I am almost a total computer novice and am having what I think is the same problem  Just got my first Apple computer (Macbook Pro).  MSN Hotmail is my email account.  All the events on my 'hotmail' account are now unreadble because they are squished to the left side of the screen and I don't find any instructions as to how to fix this in the system. This problem didn't exist when I first started using my MAC two days ago, but now I'm stuck.  Everything else in my 'hotmail' seems to work fine.  Don't know what Chrome or Firefox is or if there is a cost for them.  Also, have never downloaded a program if any kind.
My calendar is critically important to me and I don't have a clue as to what to do now.  Hope you can help.
Thanks.  Linda

Similar Messages

  • Problems with iCloud Calendar OS 10.8

    Problems with iCloud Calendar OS 10.8
    I would like to warn users of a couple of problems I have encountered recently with Calendar. I have been in touch with Apple phone support about this and after 3-4 hours on the phone they have arranged to call back tomorrow. A colleague informed me yesterday he has experienced exactly the same problem as described in point 1. below. Looks like a software glitch – I hope it can be fixed quickly.
    1. Deletion of single entry in a repeated event results in loss of display of all related events in iCloud Calendar but not on devices
    Deletion of a single entry from a repeating event (after correctly selecting to delete only the single event and not to delete all future events) results in failure to display all of the related events in iCloud but with retention of the related events on devices such as iPhone and iCal on a computer.
    There have been occasions, very briefly, that the events so affected display correctly on iCloud, only to disappear from the screen within about a second of opening the page in Calendar.
    Deletion of the relevant account in iCal (on the computer) and its subsequent reinstallation results in correct display of the calendar in iCal, but persisting failure to display the calendar entries correctly in iCloud. This appears to ONLY effect repeated entries in which one of the repeated entries has been subsequently deleted after the creation of the repeating event. Single entries, or repeated entries that have not been modified, do not appear to be affected.
    This problem is consistently occurring regardless of whether the repeated entry is set to end “never”, “after number of times” or “on date”.
    My conclusion is, there is a problem with the display of the repeated events in iCloud (?an HTML coding issue) but that the events are being correctly saved in the calendar database.
    2. Random dropout in “repeat” function for new events and/or “repeat” function in edit of existing event
    In the course of investigating problem 1, I have discovered that the pop-up menu in iCloud Calendar that allows new events to be created or old events to be edited apparently randomly has the repeat event function missing in the pop up menu – making it impossible to create a repeating event from a new entry or to edit an existing event for the repeat function. All other functions appear to be preserved in the affected pop-up.
    This problem is also apparent in iCal – i.e., it is not restricted to the web version of Calendar. I have not had the time or the energy to investigate this in detail. At first glance, it is a random error.
    Solution: Apple needs to debug this software

    Thank you paulfromstpeters !
    I have the same problem!
    I don't remember what I exactly did, but after some changes on a repeted event (I think I deleted some recurrens), it doesn't appear anymore on the iCloud and on the iPod (but correctly on the MacBook).

  • Will there be a fix for Firefox's problems with Hotmail. I have gone back to 3.5.9 but mostly I am disappointed by the lack of action on this serious problem where a major and critical feature of a major international website is unavailable in the Firefox

    Will there be a fix for Firefox's problems with Hotmail. I have gone back to 3.5.9 but mostly I am disappointed by the lack of action on this serious problem where a major and critical feature of a major international website is unavailable in the Firefox browser.
    == URL of affected sites ==
    http://www.hotmail.com

    We've reached out to the Hotmail team and they've determined that this is a bug in their code. (It was masked by a timing issue in 3.5 that was fixed in 3.6.) We've worked with them to develop a fix but they may not have deployed it yet.

  • Problem with repaint of display after a click event

    Hi,
    I have a problem with repaint of display. In particular in method keyPressed() i inserted a statement that, after i clicked bottom 2 of phone, must draw a string. But this string doesn't drawing.
    Instead if i reduce to icon the window, which emulate my application, and then i enlarge it, i see display repainted with the string.
    I don't know why.
    Any suggestions?
    Please help me.

    modified your code little
    don't draw in keyPressed
    import java.io.IOException;
    import javax.microedition.lcdui.Canvas;
    import javax.microedition.lcdui.Command;
    import javax.microedition.lcdui.CommandListener;
    import javax.microedition.lcdui.Display;
    import javax.microedition.lcdui.Displayable;
    import javax.microedition.lcdui.Graphics;
    import javax.microedition.lcdui.Image;
    public class PlayerCanvas extends Canvas implements CommandListener{
         Display display;
         Displayable dsp11;
    private Image play, pause, stop, next, previous = null;
    private int gamcode;
    private Command quitCmd = new Command("Back", Command.ITEM, 1);
    public PlayerCanvas(Display display,Displayable dsp11){
         this.display =display;
         this.dsp11 =dsp11;
         addCommand(quitCmd);
         createController();
         setCommandListener(this);
         display.setCurrent(this);
              protected void paint(Graphics g)
              g.setColor(255,200,150);
              g.fillRect(0, 0, getWidth(), getHeight());
              if (play != null){
              g.drawImage(play, getWidth()/5, getHeight()-50, Graphics.BOTTOM | Graphics.HCENTER);
              if (stop != null){
              g.drawImage(stop, getWidth()/5, getHeight()-10, Graphics.BOTTOM | Graphics.HCENTER);
              if (next != null){
              g.drawImage(next, (getWidth()/5)+10, getHeight()-30, Graphics.BOTTOM | Graphics.LEFT);
              if (previous != null){
              g.drawImage(previous, (getWidth()/5)-30, getHeight()-30, Graphics.BOTTOM | Graphics.LEFT);
                   /////this will draw on key UP
                   g.setColor(0,0,0);
                   System.out.print(gamcode);
                   if(gamcode==Canvas.UP){
                        g.drawString("PROVA",10, 0, 0);
                   }else if(gamcode==Canvas.DOWN){
                        g.drawString("DIFFERENT",10, 30, 0);     
    private void createController()
    try {
    play = Image.createImage("/icon3.png");//replace your original images plz
    pause = Image.createImage("/icon3.png");
    stop = Image.createImage("/icon3.png");
    next = Image.createImage("/icon3.png");
    previous = Image.createImage("/icon3.png");
    } catch (IOException e) {
    play = null;
    pause = null;
    stop = null;
    next = null;
    previous = null;
    if (play == null){
    System.out.println("cannot load play.png");
    if (pause == null){
    System.out.println("cannot load pause.png");
    if (stop == null){
    System.out.println("cannot load stop.png");
    if (next == null){
    System.out.println("cannot load next.png");
    if (previous == null){
    System.out.println("cannot load previous.png");
              protected void keyPressed(int keyCode)
                   repaint();
                   if ( (keyCode == 2) || (UP == getGameAction(keyCode)) ){
                        gamcode = UP;
                        repaint();
                        else if ( (keyCode == 8) || (DOWN == getGameAction(keyCode)) ){
                             gamcode =DOWN;
                             repaint();
              else if ( (keyCode == 4) || (LEFT == getGameAction(keyCode)) ){
              else if ( (keyCode == 6) || (RIGHT == getGameAction(keyCode)) ){
              public void commandAction(Command arg0, Displayable arg1) {
                   // TODO Auto-generated method stub
                   if(arg0==quitCmd){
                        display.setCurrent(dsp11);
    }

  • I have problem with hotmail on my macbook

    i have problem with hotmail on my macbook when i add my hotmail acc to mac mail the mail app got froze and closes by itself, when i try open it again it does the same thing till i remove it.

    i have problem with hotmail on my macbook when i add my hotmail acc to mac mail the mail app got froze and closes by itself, when i try open it again it does the same thing till i remove it.

  • Problem with different calendars under Mountain Lion

    I upgraded recently from Snow Leopard to Mountain Lion and experiencing an annoying problem with the calendars "On My Mac" (I am using a MacBook Pro from mid 2009). With iCal under Snow Leopard I had seven calendars - Meetings, Performances, Family, etc. with different colors. After the switch to Mountain Lion these categories aren't maintained properly. Four of them have been seemingly merged into two, so that for example an event can't be categorized as "Family" but gets shifted automatically to "Meetings" (both calendars stay checked in the editing panel, but only one "sticks"). So I have three  calendars I can use and a four I can't.
    If I try to add a new calendar it appears in the list, but no event can be assigned to it.
    Is there a limit to the number of calendars one can have?
    I don't use iCloud, so there is no issue there.
    I have one Google calendar (a work schedule I have subscribed to ) which also works with no problems.
    Any ideas?

    Same problem when reseted  the PRAM.
    I read some Chinese Web , Many people got the same problem after upgrade to mountain lion
    you can see the locked icon show in the bottom left conner even my card is unlock
    I can read but can not delete any Photos
    http://i83.photobucket.com/albums/j286/2cktang/OSX/ScreenShot2013-03-11at23227AM .png
    you can see the locked icon show in the bottom left conner
    But I can edit everything in my Harddisk
    http://i83.photobucket.com/albums/j286/2cktang/OSX/ScreenShot2013-03-11at23235AM .png
    External Hard Disk no locked icon show in the bottom left conner
    http://i83.photobucket.com/albums/j286/2cktang/OSX/ScreenShot2013-03-11at23220AM .png

  • I can get the signed to Hotmail but I can not read my mail. Sorry, there's a problem with Hotmail right now Hotmail wasn't able to complete this request. Microsoft may contact you about any issues you report.

    about 10 days ago started having trouble with Hotmail. Could isgn in but keep getting the following message.
    Sorry, there's a problem with Hotmail right now
    Hotmail wasn't able to complete this request. Microsoft may contact you about any issues you report.
    I can send mail and review my contacts but that is it.
    I then tried getting in with Internet Explorer and it works fine. I do not like IE because I have problems with some websites.

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode

  • Problem with subscribed calendars

    Hi all, I have a problem with subscribed calendars and a app that I use the developer says the problem is with apple so I thought I would ask here.
    I use Roster Buster to decode my airline roster which is then available as a calendar for me to subscribe to, this all works very well but as soon as I subscribe to my wife's roster buster calendar the problems start. Every time I enter calendar all events are there for both my wife's flights as well as my own but as soon as calendar refreshes all events change to the same so we both have the same flights ( either all my flights or my wife's ) so I have to refresh all calendars again to overcome this.
    This only happens on the iPad and only since  ios7 works fine on the iPhone 5.
    Any ideas ?
    Regards Stuart. 

    I've got what i think is a pretty good fix to this.
    subscribing to calandars via iCal on your Mac is the way to go. you can subscribe, set the colour and tell it to push via iCloud to your iOS devices. they come through with the correct colour and stay that way.
    all good
    however, i can't seem to delete the subscribed calandars i have on my iPhone. every time i delete the subscription, they just come back in again! quite annoying, but at least you can untick it so that it doesn't show up. which it would go away for good though.
    much happier now i'm controlling everything through iCal and iCloud

  • Since i have upgraded my i phone5 to 7.0.3 it has problem with 3g it display the service message every time, it reduce the battery life also.

    since i have upgraded my i phone5 to 7.0.3 it has problem with 3g it display the service message every time, it reduce the battery life also.

    Try using Settings > General > Reset > Reset All Settings.

  • Palm treo 680 Problems with hotmail account

    I have a palm treo 680, have Problems with hotmail account, dont have configuration in versamail and when enter with the browser dont open documents, photos or videos. Thanks
    Post relates to: Treo 680 (Unlocked GSM)

    IIRC, Hotmail is like Yahoo's free email - you have to pay for POP access.
    If you aren't paying for a premium version of HotMail, it won't work correctly with VersaMail.
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • After upgrading to firefox 3.6 I have problem with hotmail email service

    after upgrading to firefox 3.6.4 I have problem with hotmail email service, however I can login in hotmail, I can't open mails or delet or do anything else with them.
    == URL of affected sites ==
    http://hotmail.msn.com

    Thank you, but I already have "always show tabs bar" set.
    Also, I have two computers and the other is running the exact same version of Firefox, and the exact same theme, but it does not have this problem.
    To make sure I'm being clear: there is an "x" on each tab that allows me to close it when I have multiple tabs open. When I have only one tab open, there is no "x"; so in order to close the webpage I have to open another empty tab, and then close the first. My other computer has the "x" to close the tab visible even when there is only one tab so that I can close the page and have an empty (marked "(untitled)" tab). Please help!

  • HT1338 I have a problem with the calendar and notifications, every time I dismiss or snooze locks up and hangs, just reboot goes.

    I have a problem with the calendar and notifications, every time I dismiss or snooze locks up and hangs, just reboot goes.

    Have you run Disk Utility/Repair Permissions and/or deleted the .plist from your user library To see the user library, hold down the option key while using the Finder Go to Folder command.

  • Problem with team calendar

    Dear all,
    I have got a problem with display  of team calendar.
    The  categories of absences don't display in calendar. The employees are selected correctly.
    I made all the steps of customazing.
    -Create Rule groups
    -Specify Absences to be displayed
    -Specify Color Display of absences
    I don't use any BADI. My version portal is 7 SP 18 and ECC 6.0 stack 16.
    Thanks you for help.
    Regards.
    Lionel

    Hi Nagendra,
    I dont remember the exact auth object but ask security team to apply trace for the user id and identify the same.
    Also i would suggest you to check following setting before checking authorizations-
    Get the Group of Organizational Views applicable for rule group in your case  from following path
    SAP Customizing Implementation Guide--> Personnel Management-->Manager Self-Service (Web Dynpro ABAP)--> Service Specific Settings-->Working Time--> Team Calendar--> Select Employees:
    After getting Group of Org View Check the Evaluation path used in OADP configuration.
    Please check if the evaluation path is correct as per your requirement.
    Regards,
    Avinash

  • HT4623 iOS 8 version 8.1.2 issues with the calendar displaying wrong TIME ZONE!

    I just updated to iOS 8 using version 8.1.2 and am having issues with the calendar.  I use my GMAIL calendar and sync to my iPhone and now any calendar entries that I add from my phone display the current time zone AND GMT time.  Entries that were already there display correctly.  New entries entered from the GMAIL calendar also display correctly.  The issue is with NEW entries entered on my PHONE into the calendar.  This is very annoying and causes problems for new entries that need EDITED.  Once opened to edit it defaults to GMT time!  WRONG!!  I have turned off the automatic time zone feature and Time Zone Override in Settings but it's still WRONG!  There are multiple reports of this online so I would like to know when/if it will be corrected or if there is a fix!  Please help!!

    Quite the same problem here, GMT, UTC.......
    Why when they do an update they don't check it completely???

  • Problems with Hotmail and now Google Apps

    Last year when I tried to log in to my Hotmail account it came up, after an age, with a page unavailable dialog. I logged in through Firefox no problem. I now have to use this browser every time I wish to use my Hotmail account.
    I now find the same problem with My Google start page. All my Google Apps - email, calendar, maps etc are perpetually loading. However when I log in through Firefox, all Apps appear immediately.
    I prefer using Safari as my default browser as it is faster but now my two main reasons to use a browser no longer work.
    Why would this be?

    I tried the repair permissions and repair database. No luck. Then restarted my mac.
    Also, with iMovie, I have to force quit each time. It's unusable at this time. Please help, I'm in the process of making movies as holiday gifts.

Maybe you are looking for