I can't create an event

When I'm in the month of October, I can't create any new events, and when I print the calendar, the days come out wrong starting on the 15th.
How can I solve this?

Marcel,
Try this: quit iCal, go to System Preferences...>Language & Text>Formats>Region: and set/reset the appropriate "Region." Then log out/in or restart.

Similar Messages

  • Can I create an event in Photos

    I am using the Beta Photos.  Can I create new events using Photos?  If not, is there an equivalent?    All the events I had in IPhoto are there but I have not been able to create a new event.

    The Events in the Photos sidebar are just Albums created from those events when the conversion to Photos was made.  You can create new albums by selecting the photos and using the File ➙ New Album menu option:
    The new album will appear just above the Flagged smart album.  It can be moved into the folder titled iPhoto Events if you want or wherever else under Album you'd like to have it.

  • How Can I Create an Event Link to a Page Tab?

    I have a portlet in one tab that generates an event. I want to be able to send this event to the same page but to another tab where another portlet resides. Here's the code snippet that creates the link. This code is part of a custom JSP tag.
    // Attempt to get access to the portlet render request to determine if we are within a portal context.
    PortletRenderRequest prr = (PortletRenderRequest) pageContext.getRequest().getAttribute(
        HttpCommonConstants.PORTLET_RENDER_REQUEST);
    if (null != prr)
        try
            // Set up the parameters used for the link.
            NameValue[] eventParameters =
                new NameValue("linkUrl", linkUrlParamValue)
            // Construct the link parameter we will be using.
            linkUrl = EventUtils.constructEventLink(prr, "linkClicked", eventParameters, true, true);
        catch (PortletException e)
            // Error processing removed...
    }This code will generate the event correctly and all processing occurs as expected. However, I cannot find a way to force the second tab to display.
    I am able to force the the second tab to be displayed if I use "Direct Access URLs". These links are in the form
    [protocol]://[host]:[port]/pls/portal/url/page/[page_group_root_page_name]/[tab_name]
    But is there a way to create an event link using a specific URL?

    Hi,
    One workaround that i can think of is:
    1. Set the <passAllUrlParams>true</passAllUrlParams> attribute in your provider.xml of the portlet on the target page/tab.(dont forget to refresh the provider)
    2. If you already have the url to the tab, then you just simply construct the form in your previous portlet to post to that url with all the necessary form fields.
    3. Process the request parameters and render the second portlet.
    hope that helps.
    thanks,
    Harsha

  • Can't create an event in iCal.

    I just upgraded to 10.7.4 and noticed that my iCal isn't behaving correctly. When trying to add an event, on my MacBook Pro I get an error:
    The server responded with “400” to operation CalDAVWriteEntityQueueableOperation.
    And when trying to create an event online via iCloud.com I get "server error"
    The only place that I can create an event is on my iPhone 4S
    Any ideas?

    Did you get anywhere with this problem? I get the same error but can't find a solution.

  • Can you create 1 event in two different calendars?

    Hi All,
    I want to create an event and have it go to two different calendars all in iCal. Is this possible? Thanks in advance for your help.

    In  SL you can select the event, go to edit > copy then click on another calendar date and do an edit >paste and click on a third calendar and paste it again if you wish.

  • Can't create Calendar Event from Mail on my iPad anymore

    I no longer can create a new iPad Calendar Event from tapping on a date in email I receive.  The new Event dialog box will still appear when I click on the date in an email, but the dialog box is now too small and off-center, hiding the Done button in the upper right corner of the Dialog. Without the Done button, I can't create the new Calendar Event.  I can't resize the dialog box, or re-center it. 
    Is this a common problem after the latest iOS update?  Can anyone help?  Thanks.

    This still works for me in iOS 6.1.3
    Have you tried restarting or resetting your iPad?
    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after the iPad shuts down, then press the On/Off button until the Apple logo appears.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10 seconds). Ignore the "Slide to power off"

  • Can't create new events or todos

    I am a frequent iCal / Mac user and have been using my Mac for the last year with no problem.
    Yesterday, I was no longer able to create new events or todos, in any calendar. When I click new event or new todo, there is no response (no window pops up, just ignores). When I drag an area in a day to create a new event, it shows the dragged time, then doesn't create the todo
    If I create an event or todo on my iPhone, it stays on my iPhone, but does not show up when syncing.
    Note all old events are still present. I can move an existing event to the future, so this shows edits are still possible.
    Can this be a recent bug from an pushed updated? Has anyone else seen this?
    I have rebooted and ensured all SW is up to date.
    Greg

    I am having the same trouble and just realized it yesterday. Can you provide the detailed steps you followed that I could try?
    I sync my calendar to MobileMe and my phone and those are both fine - and I've added new things to them since iCal stopped working apparently (guessing it was about a week ago based on things missing from iCal). I'm confused by your comment about backing up iCal - won't that simply end up restoring the same inaccurate data? Or maybe in my case it doesn't matter because the next time I sync it will update with the data I have on my phone and MobileMe (so maybe a dumb question). I already use Time Capsule so I'm guessing I can just use my most recent Time Capsule/iCal file backup to do my restore?
    I know very little about Terminal - not even enough to be dangerous! Are you saying in terminal you typed in that exact string you're showing below?
    Thanks!

  • How can i create an event from a cell of JTable ?

    Hi , I am having a JTable which has two types of render : checkboxCellRender and DefaultTableCellRenderer
    i want to generate an event by clicking the checkbox which will do color changes for other cells . How can i do that ? Can i pass the events ?
    code snippet :
    class checkboxCellRenderExt extends checkboxCellRender
              public checkboxCellRenderExt(){}
              public Component getTableCellRendererComponent(JTable table, Object value,
                        boolean isSelected, boolean hasFocus,
                        int row, int column)
    JCheckBox c=(JCheckBox)super.getTableCellRendererComponent( table,value,isSelected,hasFocus,row, column);
    JTableModel md = (JTableModel)m_TablePan.getTable().getModel();
    Vector currentRow = md.getRow(row);
    if(isSelected)
    boolean m_bavail = ((Boolean)currentRow.get(COLUMN_TCM_STATUS)).booleanValue();
    if(!m_bavail)
         c.setForeground(Color.BLACK);
         c.setBackground(Color.WHITE);
    else
         c.setForeground(table.getSelectionForeground());
         c.setBackground(table.getSelectionBackground());
    else
    setForeground(table.getForeground());
    setBackground(table.getBackground());
    return this;
    class CustomcellRenderer extends DefaultTableCellRenderer
         public CustomcellRenderer()
         public Component getTableCellRendererComponent(JTable table, Object value,
                                  boolean isSelected, boolean hasFocus,
                                  int row, int column)
              checkboxCellRender chkbox =null;
              JLabel lb;
              Component c = super.getTableCellRendererComponent(table,value,isSelected,hasFocus,row, column);
              if (value == null)
         return c;
              if (value instanceof String)
                   String s = (String) value;
                   lb = (JLabel)c;
                   lb.setBorder (noFocusBorder);
                   lb.setText(s);
         JTableModel md = (JTableModel)m_TablePan.getTable().getModel();
         Vector currentRow = md.getRow(row);
              this.setHorizontalAlignment(JCheckBox.CENTER);
    if(isSelected)
                   boolean m_bavail = ((Boolean)currentRow.get(COLUMN_TCM_STATUS)).booleanValue();
                   if(!m_bavail)
                        c.setForeground(Color.BLACK);
                        c.setBackground(Color.WHITE);
                   else
                   c.setForeground(table.getSelectionForeground());
                   c.setBackground(table.getSelectionBackground());
    else
                   setForeground(table.getForeground());
                   setBackground(table.getBackground());
    return this;
    }

    Don't forget to use the Code Formatting Tags so the posted code retains its original formatting. That is done by selecting the code and then clicking on the "Code" button above the question input area.
    Add a TableModelListener to the TableModel. An event is fired when the contents of the cell are changed.

  • Can't create "new event" in icloud calendar

    When I want to create a "new event" this is waht happens. It says "couldn't create an event" because of server error. When I click report this window opens.
    It is happening to 4 other people that I know. What is going on with icloud???

    I have a client that is getting the same error message when trying to add a new calendar entry at icloud.com.

  • Can I create an event over many days with one data entry form?

    My client goes bicycle riding every Tuesday.
    He'd like to be able to create one event (Bicycle riding) and have it show up on his website as an upcoming event over many days.
    Rather than creating 52 entries for one year (52 Tuesdays) is there an easier way to associate one event with multiple dates?
    Thanks

    There is nothing worse than switching a client to Business Catalyst and having to tell them that they have to give up features that they were using in their older sites. Most Wordpress plug-ins are available at no cost. Business Catalyst does not have a plug-ins option. So when you claim a feature, such as an event calendar, it needs to have the necessary functionality to make it useful for a customer.
    Installation of Wordpress calendars is not difficult. Even the free Google Calendar has recurring events.

  • I can not create an event and all my appts are gone

    I have an ipad mini and noticed all my calendars are gone.  I have no icloud appts or anything.  My iphones are fine so Im not sure what happened.  Went to create an event and the + is gone.  Any ideas?

    Hello LuckyLuxy,
    Thanks for using Apple Support Communities.
    In order to sync your contact photos, you would need to have iCloud Contacts enabled on both devices.  Take a look at the following support article for more information.
    iCloud: Add or delete a photo for a contact
    Take care,
    Alex H.

  • Can't create calendar events and reminders

    Having a problem creating events on calendar and reminders, the add button or the 'plus sign' is grayed out.
    and my past few added events is missing, so now, my meetings, meet ups and important events.
    im using iPhone 4S running in iOS 7.1.2

    That one helped me out, but how can I prevent loosing again my events on my calendar in the future?
    Thanks a lot Amish.

  • Can I create separate events for RAW files and JPEG files of the same photo?

    I recently changed the setting on my camera to take both a RAW and JPEG image.  I now have a large number of photos in both formats in the same event. I'd like to separate all the RAW and JPEG photos into separate events.  Is it possible to do this in a batch process versus trying to move individual files?  I use iPhoto '11, version 9.4.3.
    Thanks,
    Peter

    Yes.  Create a smart album with the criteria Photo is RAW:
    Then you can select all of the photos in the smart album and use the Events ➙ Create Event menu option to move all of the RAW photos into a new event.
    OT

  • Can't create calendar event with same name

    Hi everyone,
    I'm trying to track how often something happens using my calendar and having problems.  When I craete an event and call it star. The next time it happens I create a new event and call it the same thing but it erases the last star event. Even if I modify the name slightly and call the first one star 1 then the next event star 2, it will keep star 2 but erase star 1. The events are usually across different calendar months. Does anyone know why this is or how I can get round it? It's very annoying!
    I'm using an iPhone 4 iOS 7.1.2.
    thanks muchly

    Found solution, so simple...duh!  When I did the iOS8 update, it set the
    Calendar to default for Sync to "Events 1 Month Back".  Surprised it didn't set to default when I
    upgraded my iPad. 
    I searched and searched the web and forums for this problem
    and was surprised that I couldn't get any results.  Searched some more this a.m. and the answer
    was provided by Jesse Hollington 7/4/2012 on the iLounge forum. Thanks so much!

  • Movie disappeared after crash, now can't create New Event

    Final stages of creating movie (of course!) and iMovie crashes. When restart, project is missing. Online, found suggestion to delete CurrentVersion.imovieevent and other CurrentVersion. files, which I did. I also moved the project files (inside Movies->iMovie Library (show package contents) to a safe distance. The online suggestion-- which had worked for me before-- recommended this, then: open iMovie, create New Project, quit. Move all the imovie project files into the new iMovie Library folder with the new project name, then re-open iMovie. Project should be there. And it was, last time. But for some reason, now iMovie won't let me create a New Event or a New Project, so this doesn't work.
    What is interesting is I completely removed all projects/events from the Movie folder to a different drive, but when I now open iMovie, all of my old movies/projects show up except the one I'm looking for. Where is it finding them? It should open up as new. How do I fix this?
    So far, have deleted and re-downloaded and re-installed iMovie 10.0.4 on MacBook Air running OS X 10.9.4 and removed all files from the Movie folder. Opening iMovie shows all my projects for the last several years. I have not deleted anything (only moved items), but the trash has all the CurrentVersion. files still in them. Interestingly, there are no "iMovie Projects" or "iMovie Events" folders anywhere-- all the folders/files seem to be stored in the iMovie Library; to access them I have to Show Package Contents

    Can you right-click on a folder name in the Lightroom Folder Panel and select "Show Parent Folder"?
    Can you import new photos directly to the desired folder in the desired location?

Maybe you are looking for