WebUtil: Excel-process remains open

Win-XP, Web-Util, iAS 9.0.2 (Windows XP)
Hello,
If I use WebUtil and OLE2 to access Excel, everything works fine - accept for the poor performance (!). But at the end, an "Excel" process (as can be seen in the task manager) remains open, although I used
CLIENT_OLE2.RELEASE_OBJ(application).
Everytime, I invoke
CLIENT_OLE2.CREATE_OBJ('Excel.Application')
a new Excel-process is started, but never stopped.
Does anybody have a idea to avoid this problem? Thank you for any answer!

I just tried the following example onw Win 2000 using word and this works ok (cleaning up the process).
DECLARE
app CLIENT_OLE2.OBJ_TYPE;
docs CLIENT_OLE2.OBJ_TYPE;
doc CLIENT_OLE2.OBJ_TYPE;
selection CLIENT_OLE2.OBJ_TYPE;
args CLIENT_OLE2.LIST_TYPE;
fname VARCHAR2(200) := 'c:\temp\example.doc';
BEGIN
-- set the filename
     IF :OLE_ASK_FILENAME = 'true' THEN
          fname := CLIENT_GET_FILE_NAME(null,null,null,null,OPEN_FILE,TRUE);
     END IF;
-- create a new document
app := CLIENT_OLE2.CREATE_OBJ('Word.Application');
CLIENT_OLE2.SET_PROPERTY(app,'Visible',1);
docs := CLIENT_OLE2.GET_OBJ_PROPERTY(app, 'Documents');
doc := CLIENT_OLE2.INVOKE_OBJ(docs, 'add');
selection := CLIENT_OLE2.GET_OBJ_PROPERTY(app, 'Selection');
-- insert data into new document from long item
CLIENT_OLE2.SET_PROPERTY(selection, 'Text', :long_item);
-- save document as example.doc
args := CLIENT_OLE2.CREATE_ARGLIST;
CLIENT_OLE2.ADD_ARG(args, fname);
CLIENT_OLE2.INVOKE(doc, 'SaveAs', args);
CLIENT_OLE2.DESTROY_ARGLIST(args);
-- close example.doc
args := CLIENT_OLE2.CREATE_ARGLIST;
CLIENT_OLE2.ADD_ARG(args, 0);
CLIENT_OLE2.INVOKE(doc, 'Close', args);
CLIENT_OLE2.DESTROY_ARGLIST(args);
CLIENT_OLE2.RELEASE_OBJ(selection);
CLIENT_OLE2.RELEASE_OBJ(doc);
CLIENT_OLE2.RELEASE_OBJ(docs);
-- exit MSWord
CLIENT_OLE2.INVOKE(app,'Quit');
END;
Have you actually quit the application?
Regards
Grant Ronald
Forms Product Management

Similar Messages

  • My Firefox.exe process remain open after I close the browser.If I open it it's says to open a new window.I need to close the process manualy(Ctrl+Alt+del).What can I do?Thanks .

    Need to close the process.

    It does take Firefox a while to shut down; it has to update some databases. But it should take less than a minute.
    In the support article, this problem is called a "hang at exit" because Firefox hangs when shutting down. Maybe something here will help: https://support.mozilla.com/en-US/kb/Firefox+hangs#Hang_at_exit
    Also, sometimes open Firefox windows disappear from the Task Bar. You can use Alt+Tab to switch to them if they remain open.

  • OLE Excel process still open

    Hi,
    I read a excel sheet via OLE...
    everything works fine but after closing the sheet there is still a process of excel in the taskmanager, since this is not needed (anyway it doesn't matter if I kill it) I would like to know how to close this process together with the sheet
    the excel process gets terminated after I close my report but this is not enough...
    for the coding freaks in here:
    Close the file
      CALL METHOD OF E_WORK 'close'.
    Quit the file
      CALL METHOD OF E_APPL 'QUIT'.
      FREE OBJECT E_APPL.
    btw: it does also not proceed the quit command correctly if I place an ABAP command after it...

    Sebastian,
    see oss-note 124658
    and here:
    http://www.abapforum.com/forum/viewtopic.php?t=693&highlight=free+excel
    Andreas

  • Webutil: excel.exe process remains

    Environment: Win2000, 9ids, Webutil 1.0.2(Beta)
    Hi all,
    i am doing some testing with webutil. I found out that using the following code in a when-button-pressed trigger on a simple form, it works fine, but an excel.exe process still remains in taskmanager. It is only released/killed when I close my form.
    declare
    application client_ole2.obj_type;
    BEGIN
    application := client_ole2.create_obj('Excel.Application');
    client_ole2.set_property(application,'Visible','True');
    client_ole2.invoke(application,'Quit');
    client_ole2.release_obj(application);
    END;
    Am i doing something wrong?
    Thanks in advance
    Gerald Krieger

    Dear Gerald,
    I'm surprising that why I cannot get a functional result from generating Excel and Word reports as well as importing data from Excel spreadsheets with SAME codes as yours. I'm using Webutil(Ver 1.0.2) in form 9i (Ver 9.0.4.0.19) with JInitiator 1.3.1.13. I get WUC-20 error when open the form which contains Webutil Ole2 functions. How can I fix it? What am I miss?
    Error Description
    ERROR>WUC-20 [URLDownload.pullFile()] The stated size of the source file http://nt4_132:8889/forms90/f90servlet/webutil/jacob.dll does not match that of the downloaded file C:\PROGRA~1\Oracle\JINITI~1.13\bin\jacob.dll
    I've downloaded the d2kwut60.dll, jacob.dll & JNIsharedstubs.dll under the same directory. I also find that Jinitiator will download these DLLs when form service startup to c:\program files\oracle\jinitiator 1.3.1.13\bin, but not to \webutil. These 2 sets of DLLs are different, is it really normal and workable of calling Webutil Ole2 functions?
    I understand that WUC-20 related to the defination problem of install.syslib.location. I've tried the following settings but none go without this error. What are the settings which make the virtual directory be found and read?
    Settings I try:
    - install.syslib.location=/webutil
    - install.syslib.location=http://<server>:<port>/forms90/webutil
    - install.syslib.location=http://<server>:<port>/forms90/f90servlet/webutil
    - install.syslib.location=//../webutil
    Besides, I check the DLLs (d2kwut60.dll, jacob.dll & JNIsharedstubs.dll under JInitiator\bin) in text editor and find that there is no 404 error. And both d2kwut60.dll & JNIsharedstubs.dll are non-readable. Does this result satisify?
    What make ur code open Excel successfully while I fail to do so? How to make these downloaded DLLs workable? What are the steps I need to do in order to get no error when the form calls Webutil Ole2 functions?
    Moreover I would like to know more of the configurations and settings since I still get errors even I've done all Webutil normal and additional setup steps.
    I've tried to import data from Excel spreadsheet with Ole2 in 9i in client side. All my codings can be worked and also faced the problem of Excel.exe process remaining. ALso I cannot launch the excel spreadsheet by double-clicking the document in Windown NT Explorer after running this import function. Is there any solution to fix these cases?
    Please please help. Thank you very much.
    Steffany.

  • Excel process does not end properly

    Hello All.
    I am using excel in my program writing data into it an excel workbook and then later on reading data from it. I have written down the code of closing excel worlkbook and shutting down excel application hence releasing the handles for it. But when i do that i.e. when the code containing excel workbook closing and excel application shutting down executes, excel workbook is closed but excel process does not end properly and can be seen in the task manager. And when i repeatedly open the excel file through my front end interface and close the file, another excel process is added in the task manager which does not end and so on. What can be the problem and solution. Thanks in advance.
    Best Regards.
    Moshi.

    Interfacing to Excel via ActiveX may be tricky, ending in situations like the one you are facing now.
    The basic principle is that every single handle opened to an Excel object (workbook, worksheet, range, variant and so on) must be closed properly for the entire process to terminate gracefully. If a reference remains unhandled at program end you will find an instance of Excel remaining in the task list and you may suffer erratic behaviour in subsequent accesses to the product.
    You must double check all references and add approporiate dispose/close commands for every one of them.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • WORKAROUND: "A document with the name 'vnd.ms-excel' is already open"

    I'm posting this in the hope that it might help someone else (or that someone else might suggest a better solution)...
    I'm using the technique described in the Integrating Oracle Reports in Oracle Forms Services Applications white paper. Basically, this means using RUN_REPORT_OBJECT to generate a report, and then navigating to a URL of the form...
    http://<host>/reports/rwservlet/getjobid<n>?server=<name>...to show it.
    I had the requirement that some reports (with DESFORMAT=DELIMITEDDATA) needed to open in Excel, so for these reports I added the MIMETYPE command to the URL, so that it was of the form:
    http://<host>/reports/rwservlet/getjobid<n>?server=<name>&mimetype=application/vnd.ms-excelThis appeared to work, but only for one report at a time. I could generate one report this way, and when I navigated to its URL, the report would be displayed by Microsoft Excel within a new browser window as expected. However, if I left the browser window open, then generated a second report and navigated to its URL, a new, empty browser window was displayed, but a "Microsoft Excel" message box appeared with the following message:
    A document with the name 'vnd.ms-excel' is already open. You cannot open two documents with the same name, even if the documents are in different folders.
    To open the second document, either close the document that's currently open, or rename one of the documents.
    When I chose OK (the only button), the message box closed, but the new browser window remained empty.
    If Excel was already running to begin with, the message box was obscured behind other windows, and the new browser window remained empty and appeared to never finish loading (because it was waiting for a response from the message box). The message box only appeared if I explicitly navigated to Excel (for example, using the taskbar). When I chose OK, a "File Download" dialog appeared, followed by a message box that reported the following:
    Microsoft Excel for Windows has encountered a problem and needs to close. We are sorry for the inconvenience.
    When I closed this message box, Excel shut down.
    I could not find this documented anywhere, but it appears as if Excel interprets the text after the last "/" in the URL as the file name. In my case, this was the same text every time (specifically "vnd.ms-excel"), which caused problems because Excel does not allow you to open two files with the same name.
    My workaround was simply to add the "JOBNAME=/<n>" command (where <n> is the job ID) to make the text after the last "/" unique (at least in my case). In other words, by using a URL of the form...
    http://<host>/reports/rwservlet/getjobid<n>?server=<name>&mimetype=application/vnd.ms-excel&jobname=/<n>...I was able to avoid the problem. For example, for job ID 123, the URL would be...
    http://<host>/reports/rwservlet/getjobid123?server=<name>&mimetype=application/vnd.ms-excel&jobname=/123...and Excel would interpret the file name as "123".
    Hope this helps.

    Thanks for posting, this solution worked!

  • Excel 2010 cannot open ~xlsx file from WD ShareSpace

    Excel fails to open an ~xlsx file from the Western Digital NAS. It shows downloading .... than fails cannot open file.
    The file was previously fine and if it is copied the copy opens easily. If the copy is renamed I can use Excel's recent files option to open it. The old file cannot be opened even if renamed.
    I can typically use the file for a day or so, then it becomes unusable. It cannot be opened from another Windows 7 machine either but again a copy is accessible.
    The files are small typically 100Kb, password protected
    Windows and Office are up to date on both machines
    The problem is becoming more frequent with no apparent cause
    I have tried opening from explorer, the recently used files list in Excel, and file ... open
    I have tried using mapped drive, UNC name, IP address
    The network location is recorded as trusted
    Although there is the potential to share the file it has not been opened by other users in between working and entering the state where it cannot be used.
    When a file is unusable in Excel right clicking in explorer takes a long time to offer the normal context menu. However if the file is selected then copy/paste is quick and unaffected.
    Please can anyone help me fix this annoying issue.

    Hi,
    According to your description, I have some questions.
    Would you share us the whole error message when opening the special Excel file?
    Did the copy file work well in the NAS?
    Did you move the special Excel file to another NAS folder to test?
    Did the special Excel file works well in the local disk (Download it)?
    Then, I suppose that the file may be used by other program\handle\process in the background during opening process.  Please try to use the tool named
    Handle (It is a utility that displays information about open handles for any process in the system. You can use it to see the programs that have a file open, or to see the
    object types and names of all the handles of a program.) to check.
    Steps:
    Copy handle.exe to C:\Windows\system32 folder.
    Run cmd.exe as administrator
    Type handle -a C: /Test/test in command prompt, then it will list all handles and processes accessing this folder.
      4. It shows that cmd.exe is accessing c:\Test\test. Then, we can use
    handle –c command to close the handles, along with
    the handle ID, and the process ID, and the "-y" switch to confirm the delete.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Black window remains open even after closing the window programatically

    I have an application which has multiple windows. From mainwindow button click event I am closing the child form of the application. The child window is opened after a successful socket, serial or gateway connection attempt, after which the application
    do work with some threads and while clicking on a button on mainwindow I am closing this child window after disconnecting the respective connection mode. But after the close event the child window background gets black and it remains open unless and until
    I just do a minimize and maximize the application. Please help me on this to get this issue fixed.

    Well the details are rather going to depend on what it's doing.
    It's a very open ended question really.
    But...
    Your options include.
    Background worker.
    https://msdn.microsoft.com/en-us/library/cc221403(v=vs.95).aspx
    DIspatcherTimer
    https://msdn.microsoft.com/en-us/library/system.windows.threading.dispatchertimer(v=vs.110).aspx
    Async Await
    https://msdn.microsoft.com/en-us/library/hh191443.aspx
    Tasks
    Task.Factory.StartNew(() => { Dosomething(); });
    Or just a plain thread
    using System.Threading;
    new Thread(() =>
    Thread.CurrentThread.IsBackground = true;
    // DoSomething();
    }).Start();
    Where DoSomething is a method.
    You can also have inline code of course instead of a method.
    Whilst on a different thread to the UI you can't update UI objects.
    You'll get a thread affinity error message if you try.
    That means you either return your results to the ui thread and process them there ( particularly convenient with async await ).
    Or you update something which doesn't have thread affinity.
    An observablecollection bound to an itemssource doesn't have thread affinity eg.
    You do need to raise property changed at the end of your processing with that option because it notifies collectionchanged on the wrong thread and the UI won't know it changed.
    Or you can dispathcher.begininvoke to get back to the UI thread.
    All depends what you're doing but hopefully one of those options there will suit you.
    Hope that helps.
    Recent Technet articles:
    Property List Editing ;  
    Dynamic XAML

  • Killing an excel process

    Hi!
    That's my first message here, sorry if I left something... I'm having some problems deleting an excel process one I have make some processing previously.
    After calling collect and WaitForPendingFinalizers methods and release all the excel objects created (worksheet, workbook and excelapp in that order) the excel process is still there.
    I have tried to kill the excel process and I could kill it but then I got a system message telling me that the outlook integration addon has failed so my guess is that the outlook integration addon is messing with some dll related to excel also.
    Have you got in this situation and solved it ?
    Thanks a lot !!!

    I have released the ComObjects (using the ReleaseComObject marshal method) and closed the excel connections before and after releasing all the objects opened, but to no avail, the excel process is still there...
    The problem is that each time it opens a new excel instance so it could be a great resources problem if the process is executed a few times.
    Right now I could not put the code used but I would try later.
    Here's the code...
    Finally
                'If Not xlApp Is Nothing Then xlApp.Quit()
                Dim processId As IntPtr
                GetWindowThreadProcessId(New IntPtr(xlApp.Hwnd), processId)
                'AccCommon.Functions.ReleaseComObject(xlSheet)
                'AccCommon.Functions.ReleaseComObject(xlWB)
                'AccCommon.Functions.ReleaseComObject(xlApp)
                GC.Collect()
                GC.WaitForPendingFinalizers()
                GC.Collect()
                GC.WaitForPendingFinalizers()
                RelasseExcelObject(chartRange)
                RelasseExcelObject(xlSheet)
                xlWB.Close(False, Type.Missing, Type.Missing)
                xlApp.Workbooks.Close()
                RelasseExcelObject(xlWB)
                xlApp.Application.Quit()
                xlApp.Quit()
                RelasseExcelObject(xlApp)
                chartRange = Nothing
                xlSheet = Nothing
                xlWB = Nothing
                xlApp = Nothing
                If (processId <> 0) Then
                    Dim excelProcess As Process = Process.GetProcessById(processId)
                    excelProcess.CloseMainWindow()
                    excelProcess.Refresh()
                    excelProcess.Kill()
                End If
            End Try

  • Adobe XI processes left open with no threads to a valid process

    Processes are being left open after attempts to generate PDF's.
    The system is using the latest update for Acrobat XI.  This was not an issue with this version before about February, January for sure.
    Windows 7 Professional
    16G memory
    XEON processor
    Domain environment
    The user makes the request to generate the PDF's, which get generated.  But after, a process remains on the system.  It has no attachment to the main process that generated the PDF, as that process is gone.  The processes have no valid window, however, they have a lock on the file.  In order to clear the lock one of two things must happen.  Either the computer that was generating the PDF's needs to be restarted, or the locks need to be deleted from the server.  Neither one is a good option.
    Is it time to look for another PDF product?  What works good with AutoCAD?

    In your post https://forums.adobe.com/thread/1572490 you show message 'Documents is not a valid short file name'.  Now you have the same problem with AI_RecycleBin?

  • Exit Excel process after finish loading

    Hi ,
    my problem is how to exit the excel process after i import the excel file in forms 10g
    , the file closed successfuly but the process still in memory
    how can i kill this process after finish importing the excel file .

    Why are you programmatically opening an Excel sheet in C# instead of using the DataFlow task with an Excel input?
    Since your task is programmatically starting Excel via "new Microsoft.Office.Interop.Excel.Application();", it is your responsibility to stop it.
    Please see "Quit":
    http://msdn.microsoft.com/en-us/library/microsoft.office.interop.excel._application.quit(v=office.15).aspx

  • Remaining Open Orders

    Hello Abapers,
    where should I find a table that gives me "remaining open order" information? and its respective field name?
    Thanks in advance.
    Ol Pom.

    hi POm ,
    check this code for open sales order(basic list) + open items (secondary list).
    check the status as A--not yet processed..
    B--partially processed
    C--completely processed
    hope this helps u out in getting the functionality.
    u can take the header data from vbakuk ( vbak + vbuk )
    and items from vbap as shown ..
    fetching the data from vbakuk minimizes joins on vbak and vbuk.
    execute the below code.
    REPORT ZEX2 MESSAGE-ID arc NO STANDARD PAGE HEADING.
    Tables :kna1,vbak.
    SELECT-OPTIONS : so_vkorg FOR vbak-vkorg OBLIGATORY,
    so_vtweg FOR vbak-vtweg OBLIGATORY,
    so_spart FOR vbak-spart,
    so_kunnr FOR kna1-kunnr.
    DATA : BEGIN OF sales_open OCCURS 0 ,
    vbeln LIKE vbak-vbeln,
    auart LIKE vbak-auart,
    kunnr LIKE kna1-kunnr,
    bstnk LIKE vbak-bstnk,
    lfstk LIKE vbuk-lfstk,
    fkstk LIKE vbuk-fkstk,
    gbstk LIKE vbuk-gbstk,
    END OF sales_open.
    DATA : BEGIN OF itm_sales OCCURS 0,
    vbeln LIKE vbap-vbeln,
    posnr LIKE vbap-posnr,
    matnr LIKE vbap-matnr,
    lfsta LIKE vbup-lfsta,
    lfgsa LIKE vbup-lfgsa,
    fksta LIKE vbup-fksta,
    fksaa LIKE vbup-fksaa,
    gbsta LIKE vbup-gbsta,
    END OF itm_sales.
    DATA : l_kunnr LIKE kna1-kunnr,
    l_vkorg LIKE vbak-vkorg,
    l_vtweg LIKE vbak-vtweg,
    l_spart LIKE vbak-spart.
    DATA: v_statusl(20) TYPE c,
    v_statusb(20) TYPE c,
    v_statusf(20) TYPE c,
    v_statusg(20) TYPE c,
    v_status(20) TYPE c,
    v_field(1) TYPE c.
    **Selection Screen Validations.
    AT SELECTION-SCREEN.
    PERFORM validations.
    *& Form Validations
    text
    --> p1 text
    <-- p2 text
    FORM validations.
    **Customer
    IF NOT so_kunnr[] IS INITIAL.
    SELECT SINGLE kunnr INTO l_kunnr
    FROM kna1
    WHERE kunnr IN so_kunnr.
    IF sy-subrc NE 0.
    MESSAGE e002 WITH text-005.
    ENDIF.
    ENDIF.
    **Sales Organization
    IF NOT so_vkorg[] IS INITIAL.
    SELECT SINGLE vkorg INTO l_vkorg
    FROM tvko
    WHERE vkorg IN so_vkorg.
    IF sy-subrc NE 0.
    MESSAGE e003 WITH text-006.
    ENDIF.
    ENDIF.
    **Distribution Channel
    IF NOT so_vtweg[] IS INITIAL.
    SELECT SINGLE vtweg INTO l_vtweg
    FROM tvkov
    WHERE vkorg IN so_vkorg
    AND vtweg IN so_vtweg.
    IF sy-subrc NE 0.
    MESSAGE e004 WITH text-007.
    ENDIF.
    ENDIF.
    **Division
    IF NOT so_spart[] IS INITIAL.
    SELECT SINGLE spart INTO l_spart
    FROM tvta
    WHERE vkorg IN so_vkorg
    AND vtweg IN so_vtweg
    AND spart IN so_spart.
    IF sy-subrc NE 0.
    MESSAGE e005 WITH text-008.
    ENDIF.
    ENDIF.
    ENDFORM. " Validations
    Top-of-page.
    PERFORM sales_top_of_page.
    Start-of-selection.
    PERFORM sales_sel.
    *& Form sales_sel
    text
    --> p1 text
    <-- p2 text
    FORM sales_sel.
    SELECT vbeln auart kunnr bstnk
    lfstk fkstk gbstk
    INTO TABLE sales_open
    FROM vbakuk
    WHERE vkorg IN so_vkorg
    AND vtweg IN so_vtweg
    AND spart IN so_spart
    AND kunnr IN so_kunnr
    AND gbstk NE 'C'.
    LOOP AT sales_open.
    WRITE:/4 sy-vline,
    5 sales_open-vbeln HOTSPOT ON COLOR 2 INTENSIFIED OFF,
    16 sy-vline,
    17 sales_open-auart COLOR 2 INTENSIFIED OFF,
    27 sy-vline,
    28 sales_open-kunnr COLOR 2 INTENSIFIED OFF,
    40 sy-vline,
    41 sales_open-bstnk COLOR 2 INTENSIFIED OFF,
    55 sy-vline,
    56 sales_open-lfstk,
    76 sy-vline,
    77 sales_open-fkstk,
    96 sy-vline,
    97 sales_open-gbstk ,
    117 sy-vline.
    also check in transaction va05 for the same entries ..
    regards
    vijay.

  • 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

  • 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
    ¯\_(ツ)_/¯

  • Sockets remaining open after connection failure

    Hi - I have a multithreaded application that runs as a daemon (always up) and uses OCI (10.2.0, 64-bit client). If a database connection or query fails for any reason, it is coded to keep on retrying on a set schedule until it succeeds. The application runs on RHEL 4 (64-bit) and is compiled with g++ 3.4.6. (It's nominally C++, but is really what I call "C with objects" as it doesn't use a lot of the standard C++-isms, though there are objects -- the OCI code in question is in a C++ object wrapper that I wrote.)
    Anyway, about 5 days ago, the database where most of the queries are run went down (it's a 10g server; I don't remember the exact version, but since it's down, I'm not sure it matters), and it has not come back up, although the hosts it runs on are up. Meanwhile, my application kept failing to connect and retrying, and the number of queries that this was happening to kept on growing as new ones are added every day. Unknown to me, the failed connection attempts were leaving open TCP sockets to the database that was down, until eventually the maximum open files on the system was exceeded and I was forced to reboot. Twice. (It happened again the next day.)
    From what I can tell, I am properly dropping the handles and such when a connection fails, so why are the sockets staying open? Is there anything that can be done to force the socket to close after a failed connect? This morning I changed all the queries to use a different database (that's actually up), but according to lsof, there are still 56 open sockets to the old (non-working) database, even though none of my program threads are actively trying to connect there anymore.
    The sockets do close, by the way, if the application is stopped and restarted. But they remain open as long as the instance that created them is still running. (I added a periodic restart to clean things up, but I'd really like to fix the problem instead of using a stopgap like this!)
    Sample code is below. This first bit is what is used to connect and log in. (Note that I have this mutex-locked -- I know OCI is supposed to be thread-safe if you use the OCI_THREADED attribute, but I've been having so many issues that I thought it was safer.)
    if (check_err(OCIEnvCreate(&env, (OCI_THREADED), (void *) 0, 0, 0, 0, (size_t) 0, (void **) 0)) != 0)
    fprintf(stderr, "Error allocating OCI environment handle\n");
    return;
    // Allocate error handle.
    if (check_err(OCIHandleAlloc((void *) env, (void **) &err, OCI_HTYPE_ERROR, 0, (void **) 0)) != 0)
    fprintf(stderr, "Error creating OCI error handle.\n");
    return;
    // Allocate server handle.
    if (check_err(OCIHandleAlloc((void *) env, (void **) &server, OCI_HTYPE_SERVER, 0, (void **) 0)) != 0)
    fprintf(stderr, "Error allocating OCI server handle.\n");
    return;
    // Allocate service handle.
    if (check_err(OCIHandleAlloc((void *) env, (void **) &svc, OCI_HTYPE_SVCCTX, 0, (void **) 0)) != 0)
    fprintf(stderr, "Error allocating OCI service handle.\n");
    return;
    [Note: these are snippets from two different functions; this is a C++ wrapper that uses OCI, so the above code is in the database object constructor, and below is a separate login function.]
    // Attach to server.
    retcode = OCIServerAttach(server, err, (text *) curDS, strlen(curDS), OCI_DEFAULT);
    if (check_err(retcode))
    fprintf(stderr, "Error attaching to Oracle server.\n");
    return(retcode);
    // Set server attribute in service handle.
    retcode = OCIAttrSet((void *) svc, OCI_HTYPE_SVCCTX, (void *) server, 0, OCI_ATTR_SERVER, err);
    if (check_err(retcode))
    fprintf(stderr, "Error setting OCI server attribute.\n");
    return(retcode);
    // Allocate session handle.
    retcode = OCIHandleAlloc((void *) env, (void **) &sess, OCI_HTYPE_SESSION, 0, (void **) 0);
    if (check_err(retcode))
    fprintf(stderr, "Error allocating OCI session handle.\n");
    return(retcode);
    // Set username attribute in session handle.
    retcode = OCIAttrSet((void *) sess, OCI_HTYPE_SESSION, (void *) curUser, strlen(curUser), OCI_ATTR_USERNAME, err);
    if (check_err(retcode))
    fprintf(stderr, "Error setting OCI username.\n");
    return(retcode);
    // Set password attribute in session handle.
    retcode = OCIAttrSet((void *) sess, OCI_HTYPE_SESSION, (void *) curPass, strlen(curPass), OCI_ATTR_PASSWORD, err);
    if (check_err(retcode))
    fprintf(stderr, "Error setting OCI password.\n");
    return(retcode);
    // Start session.
    retcode = OCISessionBegin(svc, err, sess, OCI_CRED_RDBMS, OCI_DEFAULT);
    if (check_err(retcode) != 0)
    return(retcode);
    // Set session attribute in service handle
    retcode = OCIAttrSet((void *) svc, OCI_HTYPE_SVCCTX, (void *) sess, 0, OCI_ATTR_SESSION, err);
    if (check_err(retcode))
    fprintf(stderr, "Error setting OCI session attribute.\n");
    return(retcode);
    If any of the above calls returns an error, the next call is to the database object destructor (also mutexed), which looks like this:
    if (connected && svc && err && sess && check_err(OCISessionEnd(svc, err, sess, OCI_DEFAULT)))
    fprintf(stderr, "Oracle - Error ending session\n");
    if (connected && server && err && check_err(OCIServerDetach(server, err, OCI_DEFAULT)))
    fprintf(stderr, "Oracle - Error detaching from server\n");
    if (connected && server && check_err(OCIHandleFree((void *) server, OCI_HTYPE_SERVER)))
    fprintf(stderr, "Oracle - Error freeing server handle\n");
    if (connected && svc && check_err(OCIHandleFree((void *) svc, OCI_HTYPE_SVCCTX)))
    fprintf(stderr, "Oracle - Error freeing service handle\n");
    if (connected && err && check_err(OCIHandleFree((void *) err, OCI_HTYPE_ERROR)))
    fprintf(stderr, "Oracle - Error freeing error handle\n");
    if (connected && env && check_err(OCIHandleFree((void *) env, OCI_HTYPE_ENV)))
    fprintf(stderr, "Oracle - Error freeing environment handle\n");
    Anyone else had this happen? Any insights/help would be greatly appreciated!
    Oh, one more note: though the application is multithreaded, none of the database objects or connections is shared -- each thread makes its own connections and maintains database objects separately. I added the mutex locks because Helgrind was reporting race conditions on handle allocations and deallocations.
    Thanks,
    --Tina                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hmm, I believe I did have an OCIHandleFree on the session handle in an earlier version of the code. I can't remember why I took it out, but I do remember that there was a reason -- it was causing a problem. (Yeah, I know, vague enough for ya?) Anyway, the OCI documentation said that when you call OCIHandleFree on the environment handle, any child handles would be implicitly freed, so I assumed it wouldn't be a problem. Still, I'll try putting it back and see what happens. Thanks.
    Oh, and to answer your question (about netstat), it said the processes were ESTABLISHED. But the Oracle server was down (although the hosts it resided on were up). The connection attempt failed with the error message:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Message was edited by:
    user613364

Maybe you are looking for

  • Sharing files between a Windows Vista Business edition and a Mac osx 10.6.6

    Is there reliable information somewhere about how to share files from a Windows Vista business edition pc to a Mac osx 10.6.6?  I have googled instructions and followed the steps and still could not have sharing to happen between the Vista pc and the

  • Manage content of web-app

    Hi All, I am developing a web application using Spring/Hibernate frameworks. My application is going to be a public facing application. The pages on this application can be divided into categories. Pre-login & Post login. Pre-Login pages: These are m

  • I can't upload dokuments to icloud?

    I have numbers on my Mac and my Iphone 4. I cannot upload my documents into the cloud. At first when I downloaded the app it works but now no more. I switched "use Ioud" in all phones an macs. Can it happened while the update to IOs 5. 01?

  • Weblogic sp4 on linux out of memory expections - Thread dump

    Any body has idea why out of memory expections? Here is the thread dump. Full thread dump Java HotSpot(TM) Server VM (1.4.2_05-b04 mixed mode): "Thread-33" daemon prio=1 tid=0x086175f0 nid=0x4f8e runnable [c8d57000..c8d5723c]      at java.net.PlainSo

  • Updated to iOS 8, now Facebook app won't open

    I have an iPhone 5c. After doing the update, my Facebook app won't stay open. What to do?