.ics file not opening in iCal and entourgae

Hi, this is the format of my .ics file, When i open it it gives the error 'iCal can't read this calendar file. No events saves to the calendar' This is the firs time i am trying to open the calendar attachment sent via an email. Its not opening in entourage also. any input in highly appreciated.
BEGIN:VCALENDAR
VERSION:2.0
BEGIN:VEVENT
DTSTART:20100518T200000Z
DTEND:20100518T210000Z
LOCATION;ENCODING=QUOTED-PRINTABLE:xxxxxxx
DESCRIPTION;ENCODING=QUOTED-PRINTABLE: xxxxxxx
PRIORITY:3
END:VEVENT
END:VCALENDAR

I'm having the same problem with .ics files when importing calendars from Tiger to Snow Leopard. It worked for some of them, but my two most important .ics will not open. I keep getting the same error message.
Any ideas what I can do?

Similar Messages

  • Why do pdf files not open in firefox and display on screen?

    I am unable to view pdf files in firefox and have to default to Explorer. Why is this happening?

    I have had this problem in Firefox version 3. I updated to Firefox 4 and again I received a message that Adobe Acrobat could not be opened witthis browser.
    Howver, I went to "Opening PDF files in Firefox" in Firefox support.
    I followed the instructions under "Check Firefox settings". Iset the Action for Adobe
    Acrobat Document to "Use Adobe Reader 9.4 (default)" and IT WORKED.

  • JNLP file not opening in Windows 8 and IE 10

    I am trying to launch the ROES ordering tool through WHCC prints and it has always worked on my other IE 10 through Windows 7 but on my new computer with Win 8 I cannot get it to launch because of the JNLP file not opening... and it won't work on desktop
    mode either... What do I need to do??

    Hi,
    Have you installed the java Runtime Environment?
    If not, I would also suggest you to refer to the link to install the latest version of Java:
    http://www.java.com/en/
    Please note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Then follow the link to set default programs as Java for the file:
    Choose the programs
    Windows uses by default
    http://windows.microsoft.com/en-US/windows-8/choose-programs-windows-uses-default
    Hope this helps,
    Ada Liu
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • I have just purchased a Canon 7d Mk2 but the raw files will not open in Cs5 and downloads of Adobe Camera Raw 8.7 will not install. What can I do?

    I have just purchased a Canon 7d Mk2 but the raw files will not open in Cs5 and downloads of Adobe Camera Raw 8.7 will not install. What can I do?

    Alternatively, install & use RawTherapee instead to develop your raw files instead (free and open source).
    http://rawtherapee.com/

  • Saved Tiffs will not open in CS2 and generate a "Could not complete your request because of a program error".

    this was supplied by Ann Shelbourne.
    Saved Tiffs will not open in CS2 and generate a "Could not complete your request because of a program error".
    These files will often open in Photoshop 7.0.1 or in CS1 but not in CS2.
    The trouble may be caused by bad dates in the EXIF data and can originate from an incorrectly-programmed digital camera; or from a scan that was created after after Jan1 of this year (because of a known bug in some scanner software).
    If someone runs into the "Could not complete your request because of a program error" problem, and does not have CS1, try opening the Tiff in TextEdit.
    The EXIF data is right at the top. Check the EXIF data for bad creation dates and change any incorrect ones there.
    Save and close; and then the file will probably open in CS2 without a murmur.

    > If iPhoto causes problems why not open the images from the Finder?
    I get the error if I open a file from within iPhoto using "OPen in external editor" and then alter it (or do not alter it) and try to save it over itself, or save it anywhere else.
    I get the error if I do "Show file" in iPhoto to see the file in the Finder. Then, if I double-click and it opens in PS, and then alter it (or do not alter it) and try to save it over itself, or save it anywhere else.
    > And with »save it anywhere« You indicate that You use the Save As-command?
    Right.

  • Getting Message as "File not open", when I ran background Job

    Hi,
    I developed a Migration Program, Which reads the data from Application serever and procced with further process in back ground mode.
    Same program is workind fine in Development System in Back ground mode (SY-BATCH = 'X', Scheduled a batch Job). So I transported to Quality system.
    Now When I run the program in background mode (SY-BATCH = 'X', Scheduled a batch Job), getting Message as "File is not Open" at Quality system. So I debugged the Batch job  through "JDBG", and found file opening and reading the content sucessfully.
    But its not working without debugging mode and getting message as "File not open".
    Is there any Authorizations required for background mode (without debugging).
    So can you please help me on this how to solve this issue.

    Try this code:
    DATA: PATH_NAME(80) TYPE C,
            LV_FILENAME TYPE STRING.
      DATA: LW_XSTRING         TYPE XSTRING,
            X_LEN             TYPE I.
      DATA: FILE_AUTH_ERR TYPE REF TO CX_SY_FILE_AUTHORITY,
            FILE_OPEN_ERR TYPE REF TO CX_SY_FILE_OPEN,
            FILE_OPEN_MODE_ERR TYPE REF TO CX_SY_FILE_OPEN_MODE,
            FILE_CLOSE_ERR TYPE REF TO CX_SY_FILE_CLOSE,
            FILE_CONVERSION_ERR TYPE REF TO CX_SY_CONVERSION_CODEPAGE,
            FILE_TOO_MANY_ERR TYPE REF TO CX_SY_TOO_MANY_FILES,
            MESS TYPE STRING,
            W_TEXT TYPE STRING.
      DATA: L_RC TYPE INT4.
    concatenate pathname lv_filename into lv_filename.
    TRY.
          OPEN DATASET LV_FILENAME FOR INPUT IN BINARY MODE MESSAGE MESS.
        CATCH CX_SY_FILE_OPEN_MODE INTO FILE_OPEN_MODE_ERR.
          W_TEXT = FILE_OPEN_MODE_ERR->GET_TEXT( ).
          L_RC = 1.
        CATCH CX_SY_FILE_AUTHORITY INTO FILE_AUTH_ERR.
          W_TEXT = FILE_AUTH_ERR->GET_TEXT( ).
          L_RC = 2.
        CATCH CX_SY_CONVERSION_CODEPAGE INTO FILE_CONVERSION_ERR.
          L_RC = 3.
          W_TEXT = FILE_CONVERSION_ERR->GET_TEXT( ).
        CATCH CX_SY_TOO_MANY_FILES INTO FILE_TOO_MANY_ERR.
          L_RC = 4.
          W_TEXT = FILE_TOO_MANY_ERR->GET_TEXT( ).
        CATCH CX_SY_FILE_OPEN INTO FILE_OPEN_ERR.  "File already open
          L_RC = 5.
          W_TEXT = FILE_OPEN_ERR->GET_TEXT( ).
      ENDTRY.
      IF L_RC = 0.
        L_RC = SY-SUBRC.
      ENDIF.
      IF L_RC <> 0 OR SY-SUBRC NE 0.
    Issue Error message in open file.
       CONCATENATE MESS 'Open dataset failed'  w_text INTO MESS SEPARATED BY SPACE.
       message Exx(yyy) with mess.
          ELSE.        "file exists and can be opened
      ENDIF.

  • PDF File not opening in browser for sharepoint 2010

    Recently we have moved our web application from one server to another in Sharepoint 2010. Back up of entire web application was taken and restored in another server. But in the new server , the PDF files in the document library is not getting opened in browser.
    it always open in browser
    I have already made following changes but didn,t work
    Set browser file handling to Permissive from central admin
    Set "open in browser" in setting s of doc library
    Set the doc library file handling property using $docLib = $web.lists["Your Document Library Title"] $docLib.BrowserFileHandling = "Permissive" $docLib.Update()
    Added "AllowedInlineDownloadedMimeType.Add("Application/Pdf") in web app
    Installed Adober eader in client machine
    Even after trying all these, the PDF files are still opening in Client application(Adobe reader) but not in the browser
    It would have been great help if anybody provide a solution for this. I have been banging head on this for two days

    It would be handy if you didn't double post too.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/81ed0362-4033-4a31-b265-c1aba43c3d14/pdf-file-not-opening-in-browser-for-sharepoint-2010?forum=sharepointadminprevious
    To answer your question, you've tried most things that I normally see working, but there may be an extra solution here for you.  The solution 2 Powershell that deals with updating the Inline MimeType may help.
    http://www.pdfshareforms.com/sharepoint-2010-and-pdf-integration-series-part-1/
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • Mwp file not opening in jdev

    Hi
    We are using 10.1.3.4 SOA n JDev. The MWP files are not opening in Jdev and while opening the project we are getting errors with the following log:
    java.lang.RuntimeException: java.lang.ClassCastException: java.lang.String
    at oracle.toplink.addin.manager.MWJDeveloperMediator.openTopLinkProject(MWJDeveloperMediator.java:328)
    at oracle.toplink.addin.manager.MWJDeveloperMediator.openTopLinkProjects(MWJDeveloperMediator.java:271)
    at oracle.toplink.addin.appnav.TopLinkProjectChangeListener.projectOpened(TopLinkProjectChangeListener.java:93)
    at oracle.ide.model.Project$StorageListener.fireProjectOpened(Project.java:1168)
    at oracle.ide.model.Project$StorageListener.mav$fireProjectOpened(Project.java:1135)
    at oracle.ide.model.Project$NL.nodeOpened(Project.java:1127)
    at oracle.ide.model.Node.fireNodeOpened(Node.java:1139)
    at oracle.ide.model.Node.open(Node.java:573)
    at oracle.ide.model.Node.ensureOpen(Node.java:976)
    at oracle.ide.model.DataContainer$2.run(DataContainer.java:147)
    at oracle.ide.model.Node.runWhileSynchronized(Node.java:809)
    at oracle.ide.model.DataContainer.getSharedPropertiesOnly(DataContainer.java:152)
    at oracle.ide.model.Project.getPropertiesImpl(Project.java:1097)
    at oracle.ide.model.Project.getProperties(Project.java:323)
    at oracle.ide.model.ProjectContent.getInstance(ProjectContent.java:122)
    at oracle.ide.model.ContentLevel.initChildren(ContentLevel.java:88)
    at oracle.ide.model.ContentSetFilter.initChildren(ContentSetFilter.java:28)
    at oracle.ide.model.ContentFilter.getChildrenImpl(ContentFilter.java:121)
    at oracle.ide.model.ContentFilter.getChildren(ContentFilter.java:64)
    at oracle.ideimpl.explorer.BaseTreeExplorer.addChildren(BaseTreeExplorer.java:360)
    at oracle.ideimpl.explorer.BaseTreeExplorer.open(BaseTreeExplorer.java:872)
    at oracle.ideimpl.explorer.BaseTreeExplorer$2.run(BaseTreeExplorer.java:1788)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Caused by: java.lang.ClassCastException: java.lang.String
    at oracle.toplink.mappings.foundation.AbstractCompositeCollectionMapping.valueFromRow(AbstractCompositeCollectionMapping.java:727)
    at oracle.toplink.mappings.DatabaseMapping.readFromRowIntoObject(DatabaseMapping.java:1045)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildAttributesIntoObject(ObjectBuilder.java:244)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildObject(ObjectBuilder.java:525)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildObject(ObjectBuilder.java:381)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildObjectsInto(ObjectBuilder.java:677)
    at oracle.toplink.internal.queryframework.DatabaseQueryMechanism.buildObjectsFromRows(DatabaseQueryMechanism.java:142)
    at oracle.toplink.queryframework.ReadAllQuery.executeObjectLevelReadQuery(ReadAllQuery.java:483)
    at oracle.toplink.queryframework.ObjectLevelReadQuery.executeDatabaseQuery(ObjectLevelReadQuery.java:812)
    at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:620)
    at oracle.toplink.queryframework.ObjectLevelReadQuery.execute(ObjectLevelReadQuery.java:780)
    at oracle.toplink.queryframework.ReadAllQuery.execute(ReadAllQuery.java:451)
    at oracle.toplink.publicinterface.Session.internalExecuteQuery(Session.java:2089)
    at oracle.toplink.publicinterface.Session.executeQuery(Session.java:993)
    at oracle.toplink.internal.indirection.NoIndirectionPolicy.valueFromQuery(NoIndirectionPolicy.java:262)
    at oracle.toplink.mappings.ForeignReferenceMapping.valueFromRow(ForeignReferenceMapping.java:1151)
    at oracle.toplink.mappings.DatabaseMapping.readFromRowIntoObject(DatabaseMapping.java:1045)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildAttributesIntoObject(ObjectBuilder.java:244)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildObject(ObjectBuilder.java:525)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildObject(ObjectBuilder.java:381)
    at oracle.toplink.queryframework.ObjectLevelReadQuery.buildObject(ObjectLevelReadQuery.java:456)
    at oracle.toplink.queryframework.ReadObjectQuery.executeObjectLevelReadQuery(ReadObjectQuery.java:424)
    at oracle.toplink.queryframework.ObjectLevelReadQuery.executeDatabaseQuery(ObjectLevelReadQuery.java:812)
    at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:620)
    at oracle.toplink.queryframework.ObjectLevelReadQuery.execute(ObjectLevelReadQuery.java:780)
    at oracle.toplink.queryframework.ReadObjectQuery.execute(ReadObjectQuery.java:388)
    at oracle.toplink.publicinterface.Session.internalExecuteQuery(Session.java:2089)
    at oracle.toplink.publicinterface.Session.executeQuery(Session.java:993)
    at oracle.toplink.publicinterface.Session.executeQuery(Session.java:950)
    at oracle.toplink.publicinterface.Session.readObject(Session.java:2591)
    at oracle.toplink.workbench.ui.WorkbenchSession.getMWProjectNamed(WorkbenchSession.java:76)
    at oracle.toplink.addin.persistence.MWJDeveloperPersistence.open(MWJDeveloperPersistence.java:234)
    at oracle.toplink.addin.manager.MWJDeveloperMediator.openTopLinkProject(MWJDeveloperMediator.java:323)
    ... 28 more
    Please provide inputs for the resolution of this as the DB Adapter wizards are not showing proper configuration and we want to do some changes in the DB adapter setup.
    Thanks

    Better post this on the SOA Suite forum.
    Is this something that happens on various laptops - or just on one?

  • I can no longer open excel documents in my doc to go app. Error message simple reads can not open attachment. And the attachment is now a winmail.dat

    I can no longer open excel documents in my doc to go app. Error message simple reads can not open attachment. And the attachment is now a winmail.dat

    winmail.dat files usually mean the email has been sent in rich text format - you could either the person who sent it to send it in a different format e.g. plain text or HTML, or there are a few apps in the store that support it (search for winmail.date in the store).
    winmail.dat files : http://support.apple.com/kb/TS1506

  • Pdf file not opening on pushing fdf file with F key in Adobe  Reader

    Well i am a novice developer in case of PDF Development.
    The problem which i am facing is:-
    In our application a PDF document submits the data to server and server sends back FDF to client with f key as http path of PDF which is present on web server.
    This all works well in acrobat professional 7.0 but in abobe reader 8.0 the PDF file doesn't open up on pushing FDF.
    On debugging the problem i found out that if server sends response within 480 milliseconds then reader is showing the pdf otherwise it don't shows up.Since in our application it will always take more than this time because of several operation performed to serve the request posted to server,So the
    PDF will never show up in case of reader.
    I was unable to understand what make it special in acrobat professional that session lasts more than 480 milliseconds whereas in reader the session doesn't last that long.
    I really need uregent help on this.
    Thanks in advance for help.

    It would be handy if you didn't double post too.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/81ed0362-4033-4a31-b265-c1aba43c3d14/pdf-file-not-opening-in-browser-for-sharepoint-2010?forum=sharepointadminprevious
    To answer your question, you've tried most things that I normally see working, but there may be an extra solution here for you.  The solution 2 Powershell that deals with updating the Inline MimeType may help.
    http://www.pdfshareforms.com/sharepoint-2010-and-pdf-integration-series-part-1/
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • Videos with avi format do not open under Lion and receive "missing codec" message.  Worked fine prior to Lion installation.

    Videos with avi format do not open under Lion and receive "missing codec" message.  Worked fine prior to Lion installation.

    http://perian.org
    You may also need to install QuickTime Player 7.6.6 to open the files.

  • Bug Report for files first opened in Bridge and then worked in Photoshop

    I encountered a problem with files first opened in Bridge and then worked in Photoshop as follows:
    1.  I opened a raw file in Bridge and then after corrections sent to Photoshop with no problem, however, after correcting and saving the file I then went back to the option of closing file and going to bridge.  It closes file and stays in Photoshop.  In order to get back to bridge I must either click on the bridge logo at bottom of screen or request to go to bridge.
    2.  I tested the same thing in CS-5 and it works like it is suppose to you click on close and go to bridge and it immediately takes you back to bridge. 
    3.  Unless this is a new feature or suppose to work this way then it is a bug.
    NancyZ

    Hi Curt
    Yes, I am talking about opening a file in bridge doing necessary corrections etc and then sending on to Photoshop.  Once I do necessary corretions and save in Photoshop my next step would be to select close and open in bridge which is a choice.  In previous Photoshops that I have used (CS4 and CS5) when you did this it would close the file and then immediately take you back to bridge.  Now under CS6  if you select close and go to bridge it closes the file but remains in Photoshop.  If bridge is not a choice when you select close and open in bridge why even have that as a choice?  Why not just select close and then click on bridge logo or Control Alt O or select go to bridge? 
    Nancy

  • Quick Time file not opening

    Suddenly QuickTime 7.5.5 stopped opening the movies stored in one Hard Disc.
    Here are descriptions of how problem occurs:
    1) The preview in finder +column view+ shows only blank space, but not a movie.
    2) Instead of opening the file QT claims that "This is not a movie file"
    3) Not all the movies in the disk are injured but about 80 % of them. There might be in same folder movies that behaves normally and movies that behaves as described above.
    I have restarted the machine few times and repaired the disk with disk utility, with not any couraging results...
    If there were any ideas what the problem might be, and how to fix it, advices would be very much appreciated.
    Screenshots of the problem:
    http://koti.welho.com/tsuonio1/File-not-open.jpg

    Two possibilities spring to mind. One is that the HD itself has been damaged somehow. Try copying one of the "bad" video files to your boot drive and opening from there. If it won't copy, your HD is clearly bad, if it copies and plays then something weirder is going on with the drive.
    The other possibility has to do with the h264 codec you used. Apple's implementation of the H264 standard is a work in progress, they've been gradually adding features that are part of the full standard and may have broken something. If you recently upgraded QT that may be the problem. If you created the files using a third party H264 codec that might explain the playback problems. Also, you should install Perian (www.perian.org) and see if that helps, their codec plays back many formats that Apple doesn't support out of the box.
    You may need to upload one of the bad files to an filesharing website of some kind so that other folks here can download and look at it themselves.

  • TA21041 I can not open some folders and get not have permission to open the folder

    I can not open some folders and recieve the message: you do not have permission to open this folder. how I can solve it?

    Select that folder, choose Get Info from the File menu, and give yourself read access under Sharing & Permissions. This shouldn't be done on folders in system directories.
    (66976)

  • .indd files not opening with recently installed Indesign CS3

    The .indd files don't have the Indesign icon next to them, instead they have the win32 icon. When I double click on one of the files an error message appears telling me that...
    "this file is not a valid win32 application"
    Even when I right-click on the file and choose to open with Indesign, it tells me the same thing. Also in this options menu, Indesign is not shown with the Indesign logo next to it, but rather the windows generic 'unknown file type' logo.
    If I open Indesign first however, and then choose file>open and choose the file. It opens fine.

    Exactly my situation yesterday, with the icon disappearing and INDD files not opening within InDesign from Explorer.
    I'm using an early XP Pro, which I guess qualifies it as 32 bit.
    The steps to rebuilding everything using the Folder Options in Windows Explorer are:
    Tools > Folder Options > File Types
    If INDD is not listed, click the New button to creat an entry, otherwise select it and click the Advanced button.
    You have an option to change the icon, so navigate to C:\Program Files\Adobe\Adobe InDesign CS3 and select the InDesign icon.
    Then under actions you need to create four actions that will relate to the context menu choices when you right click an INDD files, so click New and add actions for edit, open, preview and print.
    In the Application used to perform action box enter "C:\Program Files\Adobe\Adobe InDesign CS3\InDesign.exe" "%1"
    Those quote marks are important. Just browsing to InDesign.exe will fill the box for you, but for some reason - for me at least - it creates the %1 indicating to open the file you selected, but it doesn't wrap it in quotes. And without those quotes (at least on my machine) InDesign will start but won't load the file.
    There is also a check box to use DDE. I don't know what's appropriate here, but I ticked the box and it works OK.
    k

Maybe you are looking for

  • Help with old iMac G3

    Hey! I've been using Macs since...well, don't ask LOL. I am stumped with a problem I know I should have found a solution...but duh... :/ I just picked up a cherry iMac G3/500 with OS 9.2.2. After cleaning up the system, it really kicks butt on the G3

  • Why fields are not shown in list form ?

    Hello, I have performed below steps to create list programmatically in my project : Programmatically created content types having columns named – Contact Email,Contact Person,Location,Type and Postion. I manually created list named test and attached

  • Xml code tables

    hi friends I have posted a thread before asking about the xml code i have got the answer that you have to go to the table MKPF. but i wanted to know that if another sceanrio comes and we have to get the details of the company, then invoice, PO and le

  • Edge Animate CC french version ?

    I start using Edge Animate and my version (CC) is in English - How can I obtain a french version ?

  • SAP NETWEAVER ONLINE PORTAL DETAILS

    Hi Experts I need help on SAP Netweaver Online Portal. my question is SAPNW Online Portal is Module or its a Future/solution  in the SAP NW ? is this comes under SAP EP  ? How to Configure to Use SAPNW Online Portal. i am looking fro SAPNW Online Por