Excel File not opening

Hi There,
I am trying to open an excel file using a click box. I have
been able to open a .PDF as well as other files on other websites
with no problem.
I am using a click box, where On Success it is suppose to
open a file or URL. Then I put in the path to the excel file. The
excel file is on a website and the path is something like:
http://www.samplesite.com/testfile.xls
But when I run it through the website, I get a new window
with the path to the file in the address box. Within the body of
the window it says that the file could not be opened. BUT if I hit
return in the address field, it will bring up the file.
I was wondering if it had something to do with the fact that
whenever a file like is opened MS asks you whether you want to open
or save the file first. I have tried making it read-only, but no
luck.
If the path points to my C: drive and I preview the movie it
works. It asks if I would like to open the file and then it opens
it when I respond.
This should have taken 5 minutes, but I have been at it for 3
hours. Please help!

You must read following thread and article:
http://answers.microsoft.com/en-us/office/forum/office_2007-excel/weird-file-in-use-error-opening-excel-2007-files/887e002d-1158-4a0b-9de8-931e473469d8
http://support.microsoft.com/kb/942146
Hope it's helpful.

Similar Messages

  • Excel-File not Open in new window

    Hello,
    i have created a new iView. This iView includes an excel-File. If I open this iView the excel-File will be opened in a new window.
    Is it possible to integrate the excel-File into the iView, so that the excel-File will be in the iView when I open this?
    Please help me
    Regards,
    Philipp

    Hi Krishna,
    i have set this property. But when I open the iView the application microsoft excel will be started and the excel-File is shown in this application. This excel application is not integrated in the iView.
    Regards,
    Philipp

  • VB Script That Detects if A Specific Excel File is Open

    Hi Guys,
    I'm trying to move away from Task Scheduler as my trigger for opening an Excel file. The problem there is it has a minimum of 5 min interval (I need at least 30 sec) and If the process of the initial instance of the Excel file is longer than the usual that
    after 5 min another instance executes it messes up my memory bandwidth. What I want is to use VB Script that first check if a particular Excel file is open if yes then wait for another 30 sec to check.
    Question: What is the right syntax/code for detecting a specific Excel file and loops every 30 sec. But I also want to be able to end the loop if I want to.
    Here is my current code:
    Gateway Timeout
    RequestURI=http://timeentry/
    Set Recordset = CreateObject("ADODB.Recordset")
    ConnString = "DRIVER={MySQL ODBC 3.51 Driver}; SERVER=PHMNWWKS027604; DATABASE=db_skusetup; " &_
    "UID=root;PASSWORD=; OPTION=3"
    'Check for Export Query'
    Recordset.ActiveConnection = ConnString
    exportSQL = "SELECT * FROM tb_queue_export WHERE request_status = 'Pending' ORDER BY request_id DESC LIMIT 1"
    Recordset.Open exportSQL
    Set objExcelExtract = CreateObject("Excel.Application")
    Set objWorkbookExtract = objExcelExtract.Workbooks.Open("C:\Users\ushuam00\Desktop\LAPTOP.xlsx")
    If objWorkbookExtract.ReadOnly then
    if Recordset.Fields(3) <> "" then
    end if
    end if
    test= MsgBox(Recordset.Fields(3),3,Recordset.EOF)
    Recordset.Close
    ReadOnly is not doing it for me. 

    The only way to test it is to open it. Just open writable and, if the file is open you open with fail  then loop and try again until you can open it.  Once open just execute your macro.
    This can loop until you can open the file.
    Set xl = CreateObject("Excel.Application")
    Do While True
    Set wb = xl.WorkBooks.Open("C:\scripts\test.xlsx")
    If wb.ReadOnly Then
    MsgBox "readonly"
    wb.Close()
    Else
    MsgBox "OK"
    Exit Do
    End If
    WScript.Sleep 5000
    Loop
    xl.Quit
    ¯\_(ツ)_/¯

  • All excel files keep opening when I open excel?

    All excel files keep opening when I open excel. I can't quit excel or Force Quit until the files stop opening.

    Dealing With The Resume Feature of Lion
    Managing Mac OS X Lion's application resume feature.
    If you shutdown your computer you should get a dialog asking if you want applications to resume on the next startup. Simply uncheck the box to prevent that from occurring. Open General preferences and uncheck the option to Restore windows when quitting and re-opening apps. You can also install a third-party utility to control resume features on individual applications: RestoreMeNot or Application State Cleaner.
    It is possible to completely stop the Resume feature although I'm unconvinced that it is that annoying. Nevertheless see the following:
    If you have not yet done so you must first make your /Home/Library/ folder visible. Open the Terminal application in the Utilities folder. At the prompt paste the following command line:
    chflags nohidden ~/Library
    Press RETURN. Quit the Terminal application.
    In the Finder navigate to the /Home/Library/Saved Application State/ folder. Delete the contents of the folder. Back up to the /Home/Library/ folder. Select the Saved Application State folder. Press COMMAND-I to open the Get Info window. In the Sharing and Permissions panel at the bottom click on the lock icon and authenticate. Set each of the listed entries to Read Only. Close the Get Info window.
    Quit all open programs except the Finder (this is very important.) Next, navigate to the /Home/Library/Preferences/ByHost/ folder. Look for a .plist file with "com.apple.loginwindow." in the file name followed by some numbers in hexadecimal. Select the file. Press COMMAND-I to open the Get Info window and in the Sharing and Permissions panel click on the lock icon and authenticate. Set each of the listed entries to Read Only. Close the Get Info window. If you also find a file with the same filename but with a last extension of ".lockfile," then you should delete it.
    The above should eliminate the Resume feature system-wide. Note that any future system updates or upgrades will likely undo these changes. You will then need to repeat this procedure assuming there are no major changes in OS X related to it.

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

  • Excel does not open after OPEN is clicked after a while

    Hi ,
    I am generating a excel report using Java servlet. The report works fine as of now with out any issues. When the link is clicked the dialogue box comes and when open is clicked immediately the excel is opening with out any problem.
    Here is the issue when i wait for a while says about 30 to 40 seconds and click on the open button the excel is not opening. I get no reponse.
    Please help
    KG

    One thing that might help is to reset and/or restore the iphone.
    Here are a couple of articles from the apple support website that might help out.
    http://support.apple.com/kb/HT1737
    http://support.apple.com/kb/HT1414
    You might need to reset and or restore the iphone to resolve any software issues.
    Hope this helps.

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

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

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

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

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

  • Excel can not open

    I just bougth a macbook pro with mac osX and Danish microsoft office 2011 preinstalled.
    Now i realize that excel can not open. I have reinstalled the OSX and the Office package but this has not solved the problem. The strange thing is that it work on an other MacBook pro i bougth the same day.

    This is the error message
    Process:         Microsoft Excel [357]
    Path:            /Applications/Microsoft Office 2011/Microsoft Excel.app/Contents/MacOS/Microsoft Excel
    Identifier:      com.microsoft.Excel
    Version:         14.0.0 (14.0.0)
    Build Info:      Unknown-100825~0
    Code Type:       X86 (Native)
    Parent Process:  launchd [87]
    Date/Time:       2011-05-16 22:56:07.128 +0200
    OS Version:      Mac OS X 10.6.7 (10J4138)
    Report Version:  6
    Interval Since Last Report:          -20501 sec
    Crashes Since Last Report:           1
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      95BE3A40-B6D1-48C5-9C63-076691571CD9
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      Symbol not found: __ZN3Art11ViewElement4DropEP11IDataObjectmRKNS_4View11HitTestInfoEPm
      Referenced from: /Applications/Microsoft Office 2011/Microsoft Excel.app/Contents/MacOS/Microsoft Excel
      Expected in: /Applications/Microsoft Office 2011/Microsoft Excel.app/Contents/MacOS/../../../Office/OfficeArt.framework/Versions/14/Office Art
    in /Applications/Microsoft Office 2011/Microsoft Excel.app/Contents/MacOS/Microsoft Excel
    Binary Images:
    0x3771000 -  0x4df7ff7 +com.microsoft.Excel 14.0.0 (14.0.0) <97320AEE-A1FE-D56E-C76A-17A208F7660B> /Applications/Microsoft Office 2011/Microsoft Excel.app/Contents/MacOS/Microsoft Excel
    0x5183000 -  0x519cff7 +com.microsoft.mbukernel_framework 14.1.0 (14.1.0) <A92FB57F-23C8-3928-54A7-1769839A3790> /Applications/Microsoft Office 2011/Office/mbukernel.framework/Versions/14/mbukernel
    0x51b3000 -  0x51f5fff +com.microsoft.ribbon 14.1.0 (14.1.0) <5ADC1AC8-68B6-F9FF-C3CB-AAC4515B5E79> /Applications/Microsoft Office 2011/Office/MBURibbon.framework/Versions/14/MBURibbon
    0x521a000 -  0x521dff7 +com.microsoft.mbunamedstrings 14.1.0 (14.1.0) <DC76AC0F-EB49-6F6E-FE2B-8025CD34511C> /Applications/Microsoft Office 2011/Office/mbunamedstrings.framework/Versions/14/mbunamedstrings
    0x5224000 -  0x5228ff7 +com.microsoft.frameworks.officewindowlocalizer 14.1.0 (14.1.0) <B2342BE6-022E-8664-CB22-324D5350DBF6> /Applications/Microsoft Office 2011/Office/OfficeWindowLocalizer.framework/Versions/14/OfficeWindowLocalizer
    0x522f000 -  0x52a0fe7 +com.microsoft.netlib 14.1.0 (14.1.0) <F92F2BBA-CA4F-9939-A62A-D992ECB3629F> /Applications/Microsoft Office 2011/Office/Netlib.framework/Versions/14/Netlib
    0x52b6000 -  0x54d4ff7 +com.microsoft.mcp 14.1.0 (14.1.0) <98419278-F21E-17DC-B2AD-A0D551ACD1F2> /Applications/Microsoft Office 2011/Office/MicrosoftComponentPlugin.framework/Versions/14/MicrosoftComponentPl ugin
    0x5593000 -  0x5cfcfff +com.microsoft.office_library 14.1.0 (14.1.0) <DBC2F3ED-8396-EC63-DF29-7B210F989FA8> /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/MicrosoftOffice
    0x5e56000 -  0x5efbffb +com.microsoft.ole 14.1.0 (14.1.0) <7E409CD5-7F65-4C6B-18DC-04663216C2A8> /Applications/Microsoft Office 2011/Office/MicrosoftOLE.framework/Versions/14/MicrosoftOLE
    0x5f1f000 -  0x5fbeffb +com.microsoft.ole_automation 14.1.0 (14.1.0) <8F27F2EB-2C5F-570C-0482-DA8BE78ABDFB> /Applications/Microsoft Office 2011/Office/MicrosoftOLEAutomation.framework/Versions/14/MicrosoftOLEAutomation
    0x5fee000 -  0x6022fe3 +com.microsoft.urlmon 14.1.0 (14.1.0) <EF595E8E-4B30-7B09-4BE5-B4F0289063DE> /Applications/Microsoft Office 2011/Office/StdUrlMoniker.framework/Versions/14/StdUrlMoniker
    0x6033000 -  0x603ffeb +com.microsoft.merp 2.2.4 (2.2.4) <7DA12803-4984-ECF7-D74F-D50A6228F8F5> /Applications/Microsoft Office 2011/Office/merp.framework/Versions/14/merp
    0x604b000 -  0x6ed9fef +com.microsoft.officeart 14.1.0 (14.1.0) <55BCDCBF-4605-0D4C-2D61-9E3989E8F211> /Applications/Microsoft Office 2011/Office/OfficeArt.framework/Versions/14/OfficeArt
    0x7199000 -  0x71a3ff7 +com.microsoft.oleo 14.1.0 (14.1.0) <41CF906A-448E-1AAC-90D5-153C1EC3BFA2> /Applications/Microsoft Office 2011/Office/MicrosoftOleo.framework/Versions/14/MicrosoftOleo
    0x71ac000 -  0x7623ff3 +com.microsoft.chart 14.1.0 (14.1.0) <7250B005-7CE6-8497-5A06-B257894F5376> /Applications/Microsoft Office 2011/Office/MicrosoftChartPlugin.framework/Versions/14/MicrosoftChartPlugin
    0x7767000 -  0x777eff3 +com.microsoft.mathfont 14.1.0 (14.1.0) <7A7D72E4-C914-012B-3141-DF07D19F158D> /Applications/Microsoft Office 2011/Office/MicrosoftMathFont.framework/Versions/14/MicrosoftMathFont
    0x7784000 -  0x7978feb +com.microsoft.msxml_library 14.1.0 (14.1.0) <A235849C-127A-1FC6-3A0D-EAA9B90673FA> /Applications/Microsoft Office 2011/Office/MSXML.framework/Versions/14/MSXML
    0x79ea000 -  0x7a46ffb +com.microsoft.wlmuser 14.1.0 (14.1.0) <0A455AFF-228F-B324-15B7-FB1A67F42B91> /Applications/Microsoft Office 2011/Office/WLMUser.framework/Versions/14/WLMUser
    0x7a69000 -  0x7a95fef +com.microsoft.netlib 14.1.0 (14.1.0) <0AA761CA-6CD5-3930-6174-D94A301DDEAF> /Applications/Microsoft Office 2011/Office/WLMKernel.framework/Versions/14/WLMKernel
    0x7aab000 -  0x7ad5fff +com.microsoft.netlib 14.1.0 (14.1.0) <F3BB18DE-5B3C-EB85-9069-F119A61BF610> /Applications/Microsoft Office 2011/Office/WLMGraphicsDevice.framework/Versions/14/WLMGraphicsDevice
    0x7af2000 -  0x7b57fe7 +com.microsoft.mbuCloudServices_framework 14.1.0 (14.1.0) <05E030AD-57DC-DD46-5E31-B1C413F082F6> /Applications/Microsoft Office 2011/Office/MicrosoftCloudServices.framework/Versions/14/MicrosoftCloudServices
    0x7b79000 -  0x8709ffb +com.microsoft.gfx 14.1.0 (14.1.0) <76A4C518-F9FF-50C9-8253-01656FE745D9> /Applications/Microsoft Office 2011/Office/Gfx.framework/Versions/14/Gfx
    0x8781000 -  0x8b3efe7 +com.microsoft.igx 14.1.0 (14.1.0) <478749B9-E923-D954-9B3A-365302A6F411> /Applications/Microsoft Office 2011/Office/SmartArt.framework/Versions/14/SmartArt
    0x8c0b000 -  0x8c0fff7 +com.microsoft.mbustrings 14.1.0 (14.1.0) <F2251E2F-0B5A-914C-E830-51F5B810541A> /Applications/Microsoft Office 2011/Office/mbustrings.framework/Versions/14/mbustrings
    0x8c17000 -  0x8c19ff7 +com.microsoft.mbulocale 14.1.0 (14.1.0) <555E12BE-D76E-8EFB-165E-2DC362D49681> /Applications/Microsoft Office 2011/Office/mbulocale.framework/Versions/14/mbulocale
    0x8c22000 -  0x8c79fe7 +com.microsoft.uniscribe_library 14.1.0 (14.1.0) <BF871A84-0FA6-2CBF-1FAC-E0CFE2DA00F3> /Applications/Microsoft Office 2011/Office/Uniscribe.framework/Versions/14/Uniscribe
    0x8c95000 -  0x8cb6feb +com.microsoft.wlmstrings 14.1.0 (14.1.0) <5CAEC907-DA67-65FC-E2FB-EE119F3D41C6> /Applications/Microsoft Office 2011/Office/wlmstrings.framework/Versions/14/wlmstrings
    0x8cc5000 -  0x8d07fef +com.microsoft.mviewlib 14.1.0 (14.1.0) <3FE84F3B-B232-274D-C1E1-EA7EE8F52A4F> /Applications/Microsoft Office 2011/Office/MViewLib.framework/Versions/14/MViewLib
    0x8d30000 -  0x8d86feb +com.microsoft.CocoaUI 14.1.0 (14.1.0) <B56F485C-1FFC-A77A-96A3-F62A1A988B6C> /Applications/Microsoft Office 2011/Office/CocoaUI.framework/Versions/14/CocoaUI
    0x8db7000 -  0x8ef5feb +com.microsoft.MicrosoftOfficeDRM 14.1.0 (14.1.0) <DE3EE972-B5E1-6CFD-33C9-755CA19A6742> /Applications/Microsoft Office 2011/Office/MicrosoftOfficeDRM.framework/Versions/14/MicrosoftOfficeDRM
    0x8f25000 -  0x8f4dffb +com.microsoft.setupui 14.1.0 (14.1.0) <F1495E00-195D-DC67-429E-AB11BE5BE075> /Applications/Microsoft Office 2011/Office/MicrosoftSetupUI.framework/Versions/14/MicrosoftSetupUI
    0x8f74000 -  0x8fbeffb +com.microsoft.menulib 14.1.0 (14.1.0) <07AF697B-7F11-744A-C452-B69F19CFC2CE> /Applications/Microsoft Office 2011/Office/MicrosoftMenuLibrary.framework/Versions/14/MicrosoftMenuLibrary
    0x8fd8000 -  0x8fe6ff7 +com.microsoft.mbuinstrument_framework 14.1.0 (14.1.0) <DC3290CE-5369-BA47-ED7A-9D9FB5E841F2> /Applications/Microsoft Office 2011/Office/mbuinstrument.framework/Versions/14/mbuinstrument
    0x8ff0000 -  0x90eefef +com.microsoft.metex 14.1.0 (14.1.0) <FF46EB2C-E80A-B3C4-421F-A78EC6B3D9B6> /Applications/Microsoft Office 2011/Office/MetEx.framework/Versions/14/MetEx
    0x913b000 -  0x913cff7 +com.microsoft.CocoaTooltipParser 14.1.0 (14.1.0) <5C746B44-C2AF-3FF0-8A25-D07F78F9B440> /Applications/Microsoft Office 2011/Office/CocoaTooltipParser.framework/Versions/14/CocoaTooltipParser
    0x9141000 -  0x91f6fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <78B6EEB6-50D9-4479-D1A5-B4C381A07E4D> /usr/lib/libcrypto.0.9.7.dylib
    0x923c000 -  0x92a4ff3 +com.microsoft.docex 14.1.0 (14.1.0) <9E9F57A4-6E99-E50F-D19F-4F5D448303D1> /Applications/Microsoft Office 2011/Office/DocEx.framework/Versions/14/DocEx
    0x92b5000 -  0x92cdfe3 +com.microsoft.frameworks.winhttp 14.1.0 (14.1.0) <4E1CBC4A-52D1-9FCD-B16C-7F7585DE9345> /Applications/Microsoft Office 2011/Office/WinHttp.framework/Versions/14/WinHttp
    0x92db000 -  0x92ebff7 +com.microsoft.frameworks.wincrypto 14.1.0 (14.1.0) <794E0BB0-8EAF-1AD4-AF4B-9DF64AD40F16> /Applications/Microsoft Office 2011/Office/WinCrypto.framework/Versions/14/WinCrypto
    0x92f5000 -  0x9300ff7 +com.microsoft.credui_framework 14.1.0 (14.1.0) <8BAEBF84-66F0-B744-82AE-499932C7C4CA> /Applications/Microsoft Office 2011/Office/MicrosoftCredui.framework/Versions/14/MicrosoftCredui
    0x9309000 -  0x9309fff +com.microsoft.ddcs_framework 14.1.0 (14.1.0) <A4BAE060-C245-22B0-8877-2036B81C2CF7> /Applications/Microsoft Office 2011/Office/MicrosoftDDCS.framework/Versions/14/MicrosoftDDCS
    0x930d000 -  0x9317fff +com.microsoft.frameworks.winapiui 14.1.0 (14.1.0) <F581A05C-E9CD-BEF4-A187-AF474E8B0B5F> /Applications/Microsoft Office 2011/Office/WinAPIUI.framework/Versions/14/WinAPIUI
    0x9323000 -  0x9358ff3 +com.microsoft.msgrlibclient 8.0.0 (8.0.0) <7ADCF95E-0CCF-0D4D-C38D-4E72564A76D2> /Applications/Microsoft Office 2011/Office/MsgrLibClient.framework/Versions/14/MsgrLibClient
    0x937d000 -  0x97ccff7 +com.microsoft.csi_framework 14.1.0 (14.1.0) <9F580981-7B68-DCF4-E024-BCFA631DF9A2> /Applications/Microsoft Office 2011/Office/MicrosoftCSI.framework/Versions/14/MicrosoftCSI
    0x98a1000 -  0x98b9ff3 +com.microsoft.threadpool 14.1.0 (14.1.0) <77F22DDC-FF98-2457-6939-0C29B9B03C59> /Applications/Microsoft Office 2011/Office/ThreadPool.framework/Versions/14/ThreadPool
    0x98c9000 -  0x98d5fe3 +com.microsoft.fba_framework 14.1.0 (14.1.0) <7F6BEFF7-31D8-DC9C-D6E6-FE0AB815E423> /Applications/Microsoft Office 2011/Office/MicrosoftFBA.framework/Versions/14/MicrosoftFBA
    0x98e1000 -  0x9b3effb +com.microsoft.XPG 14.1.0 (14.1.0) <E1000B89-DD4A-4F69-E3FF-B0EC451A2992> /Applications/Microsoft Office 2011/Office/XPG.framework/Versions/14/XPG
    0x9b6f000 -  0x9b75fe7 +com.microsoft.mbufs 14.1.0 (14.1.0) <2353A45F-0CC6-6699-B929-452CDE4394CD> /Applications/Microsoft Office 2011/Office/MicrosoftFS.framework/Versions/14/MicrosoftFS
    0x9b7e000 -  0x9c99ff7 +mbupgx.dylib 14.0.0 (compatibility 14.0.0) <26E50DFC-0EFA-76F0-FB25-1EB3655DDEE3> /Applications/Microsoft Office 2011/Office/MicrosoftSetupUI.framework/Libraries/mbupgx.dylib
    0x9cb4000 -  0x9cc3ff3 +com.microsoft.wlmfile_framework 14.1.0 (14.1.0) <54BC1C06-C705-72FA-47ED-B2B34EC55D7A> /Applications/Microsoft Office 2011/Office/MicrosoftWlmFile.framework/Versions/14/MicrosoftWlmFile
    0x9ccb000 -  0x9d6dfe7 +com.microsoft.webservices_framework 14.1.0 (14.1.0) <B7CE254B-D9FD-C374-2C96-5E5A77560816> /Applications/Microsoft Office 2011/Office/MicrosoftWebServices.framework/Versions/14/MicrosoftWebServices
    0x9d86000 -  0x9ed1fef +com.microsoft.Oimg 14.1.0 (14.1.0) <C823A41C-EC4F-3A79-D580-63C20FCC1CB3> /Applications/Microsoft Office 2011/Office/Oimg.framework/Versions/14/Oimg
    0x9f60000 -  0xa0a7ff7 +com.microsoft.msls3 14.1.0 (14.1.0) <33B6C5DC-9F43-FCB0-21B8-E3A06FDCA255> /Applications/Microsoft Office 2011/Office/MicrosoftPTLS.framework/Versions/14/MicrosoftPTLS
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <283EE026-C0FE-1FF9-DB81-BFB155793157> /usr/lib/dyld
    0x90054000 - 0x9007affb  com.apple.DictionaryServices 1.1.2 (1.1.2) <5A8D5D84-06EB-F9B5-BA0A-A87A0A2C0035> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9007b000 - 0x902e0feb  com.apple.security 6.1.2 (55002) <7F00A51B-F22A-0EBC-A321-923472D686BD> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x904be000 - 0x90540ffb  SecurityFoundation ??? (???) <C3126552-3B6B-C96A-E7E7-5876AA35D19D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x90541000 - 0x90544ffb  com.apple.help 1.3.1 (41) <6A5AD406-9D8E-5BAC-51E1-E09AB9A6D159> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x90545000 - 0x9056dff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <12FBE8CB-CC8E-FE8A-7362-C852625C5AAF> /usr/lib/libxslt.1.dylib
    0x909a6000 - 0x90a54ff3  com.apple.ink.framework 1.3.3 (107) <E215794C-F3E9-C067-8882-9054796DDA8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90a55000 - 0x90a57ff7  libRadiance.dylib ??? (???) <F333B039-FF8D-6CE1-C758-213523EFF928> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90ad3000 - 0x90ad3ff7  com.apple.Carbon 150 (152) <CB9860F2-3246-4E16-49DF-2EDE81A5551F> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90ad4000 - 0x90ad4ff7  liblangid.dylib ??? (???) <FCC37057-CDD7-2AF1-21AF-52A06C4048FF> /usr/lib/liblangid.dylib
    0x90ad5000 - 0x90d00ff3  com.apple.QuartzComposer 4.2 ({156.29}) <E20EE5C6-7FAD-08E4-3DB5-8E5AAE224C6F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x90d2c000 - 0x90d37ff7  libGL.dylib ??? (???) <4425B9AA-B494-A336-EABB-6BBC9FF4EC4F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90d38000 - 0x90e18fe7  com.apple.vImage 4.1 (4.1) <AEF800AE-65DA-5E79-5B01-165AF51BAAF6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90e19000 - 0x90e69ff7  com.apple.framework.familycontrols 2.0.2 (2020) <592738FA-B093-279A-8D4E-3F76A21E2912> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90e75000 - 0x90f79fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C2C11723-A56D-C790-4E4D-BE6C82CC1099> /usr/lib/libcrypto.0.9.8.dylib
    0x90f7a000 - 0x90f7eff7  libGIF.dylib ??? (???) <24DF7EB7-913B-DF67-C98E-63A987359A16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x90f7f000 - 0x90f7fff7  com.apple.CoreServices 44 (44) <B9461120-F72A-D28F-D0CF-5647958BD3F9> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90f80000 - 0x90fc0ff3  com.apple.securityinterface 4.0.1 (40418) <A57E6534-6731-864D-114C-78BF958F6F4D> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91093000 - 0x91140fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <F237B77D-75A3-7240-931D-4735B91D365F> /usr/lib/libobjc.A.dylib
    0x91141000 - 0x91145ff7  libGFXShared.dylib ??? (???) <8498CFA9-E0A3-7A74-FCF6-EC23E1C07083> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x91146000 - 0x9119efe7  com.apple.datadetectorscore 2.0 (80.7) <A0156615-4F46-90B3-0807-0AE5F0939DB1> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9119f000 - 0x912cbffb  com.apple.MediaToolbox 0.484.33 (484.33) <E9B67234-768A-07C8-0B09-67C26AED9B67> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x912cc000 - 0x912e8fe3  com.apple.openscripting 1.3.1 (???) <0E6B81D1-C1BD-1B5F-836F-256E6701B5DE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x912e9000 - 0x915e2fef  com.apple.QuickTime 7.6.6 (1772) <9ADC7B34-ED10-9F8F-EC52-22DA2417DFBB> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x915e3000 - 0x915fbff7  com.apple.CFOpenDirectory 10.6 (10.6) <6D726EA4-67D2-E534-13A3-E3767BA59786> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x915fc000 - 0x9186ffe7  com.apple.Foundation 6.6.6 (751.53) <CBEA97E4-811D-CBCF-63A0-B43D5C45A90D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91870000 - 0x9193bfef  com.apple.CoreServices.OSServices 359 (359) <1EBCB6E1-C23A-D21A-0FDE-B3763DCCF790> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9193c000 - 0x9197aff7  com.apple.QuickLookFramework 2.3 (327.6) <FCA83173-6DBF-615C-699A-529A7FD821ED> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x919b2000 - 0x919d3fe7  com.apple.opencl 12.3.6 (12.3.6) <B774CF2D-C067-DFFE-3EE6-90A036E36E06> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x91aff000 - 0x91affff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91b03000 - 0x91b2aff7  com.apple.quartzfilters 1.6.0 (1.6.0) <F45520B0-6B27-CD57-54B1-203FE32120DA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x91b2b000 - 0x91b62fe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <8AF8C02A-9B51-D4CC-BAAA-B420210478FE> /usr/lib/libssl.0.9.8.dylib
    0x91b63000 - 0x9201effb  com.apple.VideoToolbox 0.484.33 (484.33) <AD2BBB4E-B2EA-F64B-CA86-AD143596BF76> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9201f000 - 0x9202dfe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <E1B922F4-23DC-467E-631F-7E1B9C9F51CB> /usr/lib/libz.1.dylib
    0x92035000 - 0x92072ff7  com.apple.CoreMedia 0.484.33 (484.33) <6BA86EF4-75C3-44C7-E8D0-CFED153E09E7> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x92073000 - 0x92862557  com.apple.CoreGraphics 1.545.0 (???) <2E0455F5-A2DC-4AC2-B19A-3335FD8A2B1D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x92896000 - 0x928c6ff7  com.apple.MeshKit 1.1 (49.2) <464BD81C-9970-FBF5-507F-3EEBD020A967> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x928c7000 - 0x928ffff7  com.apple.LDAPFramework 2.0 (120.1) <FDBA63D6-E765-407A-AD1F-858116AECE8C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x92900000 - 0x929aafe7  com.apple.CFNetwork 454.11.12 (454.11.12) <F637DBD0-CA3F-F536-6ABF-FA8B16A44DBA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x929ab000 - 0x929dcff7  libGLImage.dylib ??? (???) <314E14A3-AA04-0586-20D2-F0209B8BDF1C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x93a2b000 - 0x93aa2ff3  com.apple.backup.framework 1.2.2 (1.2.2) <EAD97F26-D3B1-F618-A84C-CF689860C2AF> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93aa3000 - 0x93aa4ff7  com.apple.TrustEvaluationAgent 1.1 (1) <06484720-AB50-6FD9-B5BF-05F5A640C9E5> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x93aa5000 - 0x93bb4fe7  com.apple.WebKit 6533.21 (6533.21.1) <4FBCE2F9-84EB-302C-FD1F-DAD2422A219E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x93bb5000 - 0x93bbdff7  com.apple.DisplayServicesFW 2.3.3 (289) <277007DC-4C27-2B9D-A64E-6C662BAA1C84> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x93bbe000 - 0x93bbeff7  com.apple.Cocoa 6.6 (???) <5A785062-1ABB-2A54-BAAC-8FEF95275E05> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93bbf000 - 0x93d02fef  com.apple.QTKit 7.6.6 (1772) <CD589E90-BD4D-FAEE-CC21-22CB13620E0F> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x93d03000 - 0x93d0fff7  libkxld.dylib ??? (???) <4088783A-C805-4191-0E77-4D949B48F49D> /usr/lib/system/libkxld.dylib
    0x93dd2000 - 0x93ddcffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <90C38107-AEE7-AE55-5C51-28D129B19BCD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93dfe000 - 0x93dfeff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93dff000 - 0x93dffff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x93e00000 - 0x93e92fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <EE9ED7BE-7D97-B759-C063-1E4B7DBD3775> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93e93000 - 0x93f49ffb  libFontParser.dylib ??? (???) <D85C1840-0FA8-27A2-54B7-FF336099EBC0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x94244000 - 0x94258ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <9F5CE4F7-D05C-8C14-4B76-E43D07A8A680> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9425c000 - 0x94672ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <9D89FCB3-24C9-8FCF-DB49-27B184AC3222> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x947f8000 - 0x94806ff7  com.apple.opengl 1.6.13 (1.6.13) <3E7B0FAC-B5DF-A87F-CD3F-2A053B033155> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x94820000 - 0x94823ff7  libCoreVMClient.dylib ??? (???) <E5E756D0-FC65-227B-DC92-10874062FF5D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x94824000 - 0x94838fe7  libbsm.0.dylib ??? (???) <B328FA0A-899C-4FC4-F2AC-2FDC08819CD2> /usr/lib/libbsm.0.dylib
    0x94839000 - 0x94880ffb  com.apple.CoreMediaIOServices 140.0 (1493) <C00F5249-713F-A8F3-F9EB-121F6AF5FB08> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x9492b000 - 0x9496bff7  com.apple.ImageCaptureCore 1.0.4 (1.0.4) <511AD34B-AFE7-946B-8DD7-159122B2C64E> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x949a0000 - 0x94b1bfe7  com.apple.CoreFoundation 6.6.4 (550.42) <BA29C5CE-77DB-87DB-5B74-9EEFF5265681> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94bf8000 - 0x94bf9ff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <1DD14B2E-E466-1A45-5CF7-947766F0ECD9> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x94bfa000 - 0x94c4bff7  com.apple.HIServices 1.8.2 (???) <BBE23110-368B-EE45-9D1D-D61473BF2078> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94c4c000 - 0x94cc7fff  com.apple.AppleVAFramework 4.10.25 (4.10.25) <C38DA93D-1DB6-761E-9F8F-659CB57D9D7C> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x94cc8000 - 0x94d2cfff  com.apple.htmlrendering 72 (1.1.4) <0D22B190-513B-7FF6-39FC-9D336285DE08> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x94d73000 - 0x94da6ff7  com.apple.AE 496.4 (496.4) <23F0DB1F-2856-0091-80AE-BDEF9A4F1731> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x94da7000 - 0x94f61feb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <40F9474B-8819-CDF7-A4E2-8963E723ED8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x94f62000 - 0x94f64ff7  com.apple.securityhi 4.0 (36638) <EC36A223-0B54-FB80-7F6A-90FB0A1AA746> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94f65000 - 0x94fdeff7  com.apple.PDFKit 2.5.1 (2.5.1) <4C374867-71B8-B202-ADDA-9985B4379470> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x94fdf000 - 0x95022ff7  com.apple.NavigationServices 3.5.4 (182) <FE19D51B-233A-69EC-9E36-B89D0EA438C1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9502a000 - 0x950c7fe3  com.apple.LaunchServices 362.2 (362.2) <16E9C194-A145-5BD0-2A8B-8E610AE1169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x950c8000 - 0x95433ff7  com.apple.QuartzCore 1.6.3 (227.36) <7844CA24-7A00-EB86-9631-0461DE4FF46E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95ab0000 - 0x95ab6fe7  com.apple.CommerceCore 1.0 (9) <DC6B8176-5526-581F-A977-5A6D20FDAA09> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x95b0c000 - 0x95c8efe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <3F00D378-803C-5011-6A29-4461F06AFD44> /usr/lib/libicucore.A.dylib
    0x95c8f000 - 0x95cccff7  com.apple.SystemConfiguration 1.10.5 (1.10.2) <B2B2A68A-81D9-CE93-2B77-FC0DA6F43F4A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x95ccd000 - 0x95ce2fff  com.apple.ImageCapture 6.0.2 (6.0.2) <88A621FB-8462-2010-22A5-55D2848E4CB3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x95e92000 - 0x95f93fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <E1A44C67-FA6C-0188-F46F-EA14CEE557BB> /usr/lib/libxml2.2.dylib
    0x96041000 - 0x960bbfff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <38147344-843F-A52F-9FE5-9A3FDF044024> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x960e3000 - 0x96b36ff7  com.apple.WebCore 6533.21 (6533.21.1) <09CE6602-4DB5-6E93-8593-4E1C57CB202F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x96b45000 - 0x96c47fef  com.apple.MeshKitIO 1.1 (49.2) <EC52D0C5-5291-441D-F137-8E4DD60F0E25> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x96c57000 - 0x96c5bff7  IOSurface ??? (???) <A74AF792-125B-AD8A-4472-EA8F22E7C91B> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x96c5c000 - 0x96c63ff3  com.apple.print.framework.Print 6.1 (237.1) <726A7F31-8C27-8403-0016-71E022EDC14C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x96c64000 - 0x96cd3ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <B3DEACA1-9375-CF8F-0898-AA2C5F8159DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96cd4000 - 0x96ff4ff3  com.apple.CoreServices.CarbonCore 861.34 (861.34) <88A96F0F-C8A6-BB10-70AE-B9C30E15EEAA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x96ff5000 - 0x97017fef  com.apple.DirectoryService.Framework 3.6 (621.11) <401E67B3-96DF-287B-2892-210C3A2EE9A6> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x97018000 - 0x9706eff7  com.apple.MeshKitRuntime 1.1 (49.2) <4B41E225-69AC-6EFA-190E-DC6A4BD8109E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x9706f000 - 0x97216ff7  libSystem.B.dylib 125.2.10 (compatibility 1.0.0) <E9242C9C-0EE8-0658-F002-D05DA4164F0F> /usr/lib/libSystem.B.dylib
    0x97217000 - 0x973f9fff  com.apple.imageKit 2.0.3 (1.0) <BE53BBDF-F144-78AC-DCBC-40E847D5A25F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x973fa000 - 0x974d4ffb  com.apple.DesktopServices 1.5.10 (1.5.10) <CF69F8CA-DC47-EF8E-AD79-04D589B7D116> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x974d5000 - 0x976dcfeb  com.apple.AddressBook.framework 5.0.4 (883) <DAC9BD84-85CA-BE07-6874-43829E3BE702> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x976dd000 - 0x97747fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x97748000 - 0x977a5ff7  com.apple.framework.IOKit 2.0 (???) <4389DF74-E070-C787-4EC1-7754B5AE19B3> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x977a6000 - 0x977c6fe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <584B2B30-DC65-6930-F59F-C49FD5604B67> /usr/lib/libresolv.9.dylib
    0x977da000 - 0x978e6ff7  libGLProgrammability.dylib ??? (???) <D8A31B5B-26F7-7AB6-F4F4-D720384947E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x97943000 - 0x97967ff7  libJPEG.dylib ??? (???) <B54ACF14-A32D-C90D-D086-5CE54CFC29B5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x97968000 - 0x97975ff7  com.apple.NetFS 3.2.2 (3.2.2) <0A53CD10-DBC7-2BE8-34F7-354BE201F6FB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x97976000 - 0x979b9ff7  libGLU.dylib ??? (???) <0CF0BB97-62AA-6A63-7FF9-F06E4F42176C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x97a29000 - 0x97a39ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <E276514D-394B-2FDD-6264-07A444AA6A4E> /usr/lib/libsasl2.2.dylib
    0x97a3a000 - 0x97a59ff7  com.apple.CoreVideo 1.6.2 (45.6) <F9E52A13-E181-D302-3B0E-0799ED6D6130> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x97ae8000 - 0x97ae9ff7  com.apple.audio.units.AudioUnit 1.6.6 (1.6.6) <E49F6AB1-941E-5DA8-575F-D816A449624B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x97aea000 - 0x97af4fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <DE0E0EF6-8190-3F65-6BDD-5AC9D8A025D6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x97b05000 - 0x97d03ff3  com.apple.JavaScriptCore 6533.20 (6533.20.20) <C97A479C-FDF9-3F19-2EE0-80288257C477> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x97d04000 - 0x97d0afff  com.apple.CommonPanels 1.2.4 (91) <CE92759E-865E-8A3B-1488-ECD497E4074D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x97d87000 - 0x97dcbfe7  com.apple.Metadata 10.6.3 (507.15) <D26C3B8E-5B33-FAF9-CF70-1088B22783AF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x97ff0000 - 0x9804afe7  com.apple.CorePDF 1.3 (1.3) <3293C017-8294-402E-79C7-AA728A7B9535> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x9804b000 - 0x9892bff7  com.apple.AppKit 6.6.7 (1038.35) <8070FE1F-1B86-F58C-441F-FF8629F5061D> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9892c000 - 0x98a68ff7  com.apple.audio.toolbox.AudioToolbox 1.6.6 (1.6.6) <F4E5167C-E184-8D2D-082B-0B3EB751F707> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x98a74000 - 0x98d98fef  com.apple.HIToolbox 1.6.5 (???) <F21289A3-A00E-0BC3-66F1-7557862CE7EB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x98d99000 - 0x991ceff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <4D2F47EF-BD32-1E3C-6A0A-438896ADE2BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x991cf000 - 0x991d8ff7  com.apple.DiskArbitration 2.3.1 (2.3.1) <AAE0185D-4A47-1833-27A3-03FDF734A3BA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x991d9000 - 0x99292fe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <03186216-0A12-4AA9-D7BA-3E3551A1195C> /usr/lib/libsqlite3.dylib
    0x99293000 - 0x9929eff7  com.apple.CrashReporterSupport 10.6.7 (258) <FE4FBB43-95B6-1BBF-DECD-A90BB5B8BF45> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9929f000 - 0x992a4ff7  com.apple.OpenDirectory 10.6 (10.6) <7E8AFE74-1FA9-7B35-A0E3-545959A9CA73> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x992a5000 - 0x99313ff7  com.apple.QuickLookUIFramework 2.3 (327.6) <0A8CF0E7-9ED7-31F2-B6CC-7EE5A5F2EEC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x99324000 - 0x99452fe7  com.apple.CoreData 102.1 (251) <0C2636F3-CCB4-5ED9-1D3E-5AE36BE57071> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x99461000 - 0x99472ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <B59157A1-8796-CE8F-2508-EB96F093F6A7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x99479000 - 0x994bdff3  com.apple.coreui 2 (114) <1A3C3B7F-3837-6477-3114-47F6BFD56CB2> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x994be000 - 0x99504ff7  libauto.dylib ??? (???) <7CB1AB76-50A2-8E56-66E4-CF51CA75B177> /usr/lib/libauto.dylib
    0x99505000 - 0x99515ff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <95DC4010-ECC4-3A75-5DEE-11BB2AE895EE> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x99516000 - 0x9951dff7  com.apple.agl 3.0.12 (AGL-3.0.12) <2F55EF92-4D25-56FD-8623-A3231F32F49C> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9961f000 - 0x9961fff7  com.apple.ApplicationServices 38 (38) <EAF1BC8C-4FD4-4300-B8F7-4B24E49125E2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x99620000 - 0x99620ff7  com.apple.quartzframework 1.5 (1.5) <7DD4EBF1-60C4-9329-08EF-6E59731D9430> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x99621000 - 0x9966afe7  libTIFF.dylib ??? (???) <883E22E0-2D17-14F4-0B7D-69025BA7EFD8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x996ac000 - 0x996e5ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <A618C135-8463-B2C4-C3E5-16DD58E0E389> /usr/lib/libcups.2.dylib
    0x996f6000 - 0x99757fe7  com.apple.CoreText 3.151.8 (???) <940ECF78-8BC2-B74E-F815-FDFFB3C550C2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x997da000 - 0x99827feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <9E35835E-BC33-F8EC-8F3B-84D51DEBDB16> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x99828000 - 0x998c0fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <88CA2CC8-9005-E017-6D61-5809C3CE5FC6> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x99908000 - 0x999c4fff  com.apple.ColorSync 4.6.6 (4.6.6) <8FB2E63C-FA84-1CFD-15ED-F9FEC7A019A6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x999c5000 - 0x99a45feb  com.apple.SearchKit 1.3.0 (1.3.0) <7AE32A31-2B8E-E271-C03A-7A0F7BAFC85C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x99a46000 - 0x99a49fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x99b8d000 - 0x99ba8ff7  libPng.dylib ??? (???) <ED4DF104-C0A1-6614-7CEE-DA0937196DD3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x99ba9000 - 0x99c44ff7  com.apple.ApplicationServices.ATS 275.15.1 (???) <6AFD74A0-3A75-1362-E1EC-FC85EE3F68B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x99c45000 - 0x99cedffb  com.apple.QD 3.36 (???) <5A93B258-3853-636F-DB26-223642DA2779> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x99f08000 - 0x99f4aff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <1AE34B00-8A62-1E51-935F-BB3F0E4BE50F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9a000000 - 0x9a012ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6329EE2D-725B-D1E5-D613-EB3A9CCF498F> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <E9242C9C-0EE8-0658-F002-D05DA4164F0F> /usr/lib/libSystem.B.dylib
    Model: MacBookPro8,1, BootROM MBP81.0047.B0E, 2 processors, Intel Core i5, 2.3 GHz, 4 GB, SMC 1.68f96
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.104.3)
    Bluetooth: Version 2.4.5f1, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK5065GSXF, 465,76 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS31N
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0246, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 7
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3

  • Excel rule files not opening in OPA 10.2

    Hi ,
    I have been using OPA 10.2 , on a windows 7 system , any of the excel files in my OPA project are not opening. They give an error message - "An error occurred while opening the document abc.xls. Unable to set the installed property of the AddIn class."
    I un-installed and re-installed OPA as well as Office 2007 Enterprise Edition , but the error still exists. I also tried running OPA with - "Run as administrator" option , but the problem persists.
    Can anybody please help in this regard.
    Thanks,
    Kavyashree

    Take a look at the Installation Guide for Oracle Policy Modeling 10.3.1. There is a topic at the bottom that has some steps that might be relevant for your situation. For convenience I've copied some of the details:
    The following is a possible workaround that will enable you to manually activate the Oracle Policy
    Modeling AddIn for Excel:
    1) Open the Excel document outside Oracle Policy Modeling.
    2) Select Excel Options from the Office Menu (circle at top left). Select Add-Ins, then find
    Manage: Excel Add-Ins, and click on Go...
    3) Place a tick in the Oracle Policy Modeling Excel 2007 check box (if it is already ticked, try unticking,
    clicking OK, and ticking it again).
    4) Click on the OK button.
    5) Try opening the workbook again in Oracle Policy Modeling.
    If the Oracle Policy Modeling AddIn for Excel does not appear in step 3, you should be able to locate
    it in the templates directory of the Oracle Policy Modeling installation. The default location is:
    C:\Program Files\Oracle\Policy Modeling\templates\Oracle Policy Modeling Excel 2007.xlam

  • Excel will not open

    Excel program is unable to open at all. Files cannot be opened either. Tried also to install Microsoft Office Mac 2011 Home and Student again... But no luck...  Never experienced this troubble before. Word and powerwoint works as normall, so i dont understand why Excel is not working. Im not a very computerhandy human, so if someone understand the problem, please make it easy for me to understand
    All i get is this message:
    Process:         Microsoft Excel [1484]
    Path:            /Applications/Microsoft Excel.app/Contents/MacOS/Microsoft Excel
    Identifier:      com.microsoft.Excel
    Version:         14.3.9 (14.3.9)
    Build Info:      Unknown-131030~0
    Code Type:       X86 (Native)
    Parent Process:  launchd [137]
    Date/Time:       2014-02-26 15:33:37.850 +0100
    OS Version:      Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Interval Since Last Report:          103814 sec
    Crashes Since Last Report:           12
    Per-App Crashes Since Last Report:   9
    Anonymous UUID:                      53876B0B-DB1D-4DD1-984C-2D0982647D07
    Crashed Thread:  0
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    dyld: launch, loading dependent libraries
    Dyld Error Message:
      Library not loaded: @rpath/mbukernel.framework/Versions/14/mbukernel
      Referenced from: /Applications/Microsoft Excel.app/Contents/MacOS/Microsoft Excel
      Reason: image not found
    Binary Images:
        0xa000 -  0x169bff3 +com.microsoft.Excel (14.3.9 - 14.3.9) <20791FAC-F3DB-B407-8473-C8AA9329AEF3> /Applications/Microsoft Excel.app/Contents/MacOS/Microsoft Excel
    0x8fe09000 - 0x8fe3baa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    Model: MacBookPro9,2, BootROM MBP91.00D3.B08, 2 processors, Intel Core i7, 2.9 GHz, 8 GB, SMC 2.2f44
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533643465238432D50422020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533643465238432D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (5.106.198.19.22)
    Bluetooth: Version 4.0.8f17, 2 service, 11 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: TOSHIBA MK7559GSXF, 750,16 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0x1d180000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0253, 0x1d183000 / 6
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821d, 0x1d181300 / 8
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x1d182000 / 4
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0x1a110000 / 3
    -Chakoya-

    Did you completely remove Office (http://support.microsoft.com/kb/2398768?wa=wsignin1.0) before reinstalling it?
    It looks as though Excel is missing a library in the application.
    Clinton

  • Excel file not created while running application using executable on different PC

    Hi,
    I have created an executable and an installer for an application. In this application I am saving data to an excel file using a template. This works fine when I run using the executable on development PC. However when I deploy this application on another PC, excel application opens the template and writes the data but the file is not saved or created at the desired destination.
    The path for file to be saved is coming up right but no file is saved.
    Development Machine details:
    OS: Windows 7
    Office version: 2010 (but I am saving file in 97-2003 format)
    LV version: 2012
    I had checked 'Unlock' option while building the application but stil faced the same issue

    This error means that the VI which is downloaded to the FPGA was changed on the host/development system, but has not been recompiled. By recompiling it you resolve this problem.
    When a LabVIEW FPGA VI is compiled for the FPGA, the bit stream, which will be downloaded to the FPGA, is stored in the VI file. When LabVIEW RT or LabVIEW Windows attempts to download the bit stream to the RIO card, it makes sure the bit stream corresponds to the VI source code in the same file. This is necessary so that the host application can properly communicate with the VI on the FPGA. If the two are not the same, this error is generated from the Open FPGA VI Reference function in the host application.
    Christian L
    NI Consulting Services
    Christian Loew, CLA
    Principal Systems Engineer, National Instruments
    Please tip your answer providers with kudos.
    Any attached Code is provided As Is. It has not been tested or validated as a product, for use in a deployed application or system,
    or for use in hazardous environments. You assume all risks for use of the Code and use of the Code is subject
    to the Sample Code License Terms which can be found at: http://ni.com/samplecodelicense

Maybe you are looking for

  • How can I use my iRig plugin for guitar/keyboard in garageband 10.0.2??

    Hey, I'm having A LOT of trouble with the newest version of garageband. I recently updated it so I now have version 10.0.2, starting of with a loooot of trouble getting it to finish downloading/installing. I kept saying that it couldn't finish becaus

  • Ipod not being recognised by Itunes after using Iphone

    I have been using my Ipod classic on Itunes on my PC with no problems and then I plugged in my Iphone for the first time and this was accepted. I then plugged in my Ipod again afterwards and on the Ipod it says its being connected and then immediatel

  • Post upgrade from 11.5.10.2 to 12.1.3 Forms are not opening

    Hi, After upgrade from 11.5.10.2 to 12.1.3, When we click on any of the form link, forms are not opening. No error detected in $LOG_HOME/logs/ora/10.1.3/j2ee/ folder. Please help as we are stuck here. Regards, Shrikant

  • Time refresh doesn't work .... probably flaws in the code. Please help ...

    Making a time display and try to keep track of the system time every second. When I pruposely changed the system time for the first time, it worked; another time it wouldn't work and it stopped. Where is the bug please ... tick_24 = new Timer ( 1000,

  • PSE 8 organize toolbar

    I just got PSE 8.  in the organizer there is no toolbar(file, edit, find, view...), only a drop down arrow to access the toolbar, but in the edit part of Photoshop the toolbar looks normal, with the menus next to each at the top of the window.  Is th