Excel Marcos

Hi
I understand that the Excel in Mac Office 2008 do not run Macros. (hmm.. i wonder why on earth do they do that !)
I'm new to Mac and so far the experience has been great except for this problem. I run macros frequently and would definitely like to do so in a Mac.
May I know what's the previous version of Office/ Excel that will allow me to run my macros ?
How can I do it other than running Boot Camp or running a parallel software? Please advise and help is appreciated.
Thanks.
Jojo

Hi
I downloaded NeoOffice and tried running the macros. While some macros worked... some didn't. : (
Looks like I really have to buy a previous version of Mac Office.
Does anyone knows what is previous version of Mac office that will allow me to run Excel with Macros?
Is that Mac Office 2004?
Please help.
Jojo

Similar Messages

  • How to execute Excel Marco from SAP using Office Integration Classes

    Is there a way to trigger Excel Macro from SAP? I tried using method CALL METHOD document->execute_macro
    of i_oi_document_proxy  but it does not work.
    Thanks
    Vivek

    Try this:
    If you are using OLE to populate the Excel Sheet then, then yes you can run a macro.
      CALL METHOD OF OBJ_EX_APP 'Run'
           EXPORTING #1 = MACROSTR.
    Adding a Field Exit
    To add a field exit first find the data element that is linked to the screen field- the screen number and program
    Run program RSMODPRF. You will need to create two function modules one FIELD_EXIT_MEPO_VENDOR and
    FIELD_EXIT_MEPO_VENDOR_A
    FIELD_EXIT_MEPO_VENDOR should have code simply of input = ouput.
    FIELD_EXIT_MEPO_VENDOR_A should have the code for whatever the functionality is required
    Go back to RSMODPRF and run the program without parameters. Use the push buttons to assign the screen, 'A' and program. Use the drop down to activate the field list.
    This should now work, but there is no way of debugging. For further information look at OSS 29377
    program zzdirlist.
    for AIX this method also works.
    DATA: BEGIN OF TABL OCCURS 0,
          TEXT(80) TYPE C,
          END OF TABL.
    DATA: COMMAND(256) TYPE C.
    COMMAND = 'ls'.
    CALL FUNCTION 'RFC_REMOTE_PIPE' DESTINATION 'SERVER_EXEC'
    EXPORTING COMMAND = COMMAND
    READ = 'X'
    TABLES PIPEDATA = TABL.
    LOOP AT TABL.
       WRITE:/ TABL-text.
    ENDLOOP.

  • I have problem with running excel macro in report generation tool kit

    I am trying to use Excel Run Macro.vi but run into a problem: Exception occured in Microsoft Excel, The macro 'personal.xls!Macro1' cannot be found.. Help Path is C:\Program Files\Microsoft Office\Office\1033\xlmain9.chm and context 0 in Excel Run Macro.vi->example.vi
    Also I tried to save the macro under the file that is active and I get the same results.
    I saved the macro as *.bas file and ran it using Excel Import Module and did not see any erreos and it did not do anything.
    Where a re some god examples that use the excel marco feature using the new report generation vis?

    masoud,
    Try this example out and let me know if you have any more questions. Also, this is in LabVIEW 6.1 format. If you need it in a different format, please let me know.
    Randy Hoskin
    Applications Engineer
    National Instruments
    http://www.ni.com/ask
    Attachments:
    Module1.bas ‏1 KB
    TestAddMacro.vi ‏34 KB

  • SEND KEYS USING VBA EXCEL TO ORACLE FORMS

    Hello everyone im pretty much a noob to oracle forms. the company i work for just acquire the a new financial system which runs on "oracle developer forms runtime" Im trying to figuere out if there is a way to use vba to send keys to the forms... I know I can upload to the tables and make it appear on the forms but im trying to see if i can do it another way. I have downloaded the webutil I dont have server access but i do have access to the forms as a end user. Anywho is this possible? any help or direction would be greatly appreciated.

    You could download a dataloader. Just google it.
    If you don't want to use dataloader, yes, you can build and excel marco. you would have to use AppActivate "X" where X is the name of the Oracle instance (ie. that you see at the top left of the Oracle apps). You would also need to use sendkeys function. Use AppActivate, build 2 nested loops (outter for rows, inner for columns), select the value from the cell the uses sendkeys to send the value to the active app:
    http://msdn.microsoft.com/en-us/library/aa202943(v=office.10).aspx
    You also need to use some sort of sleep function because excel will process the rows faster than Oracle.
    Should look something like:
    AppActivate "Oracle Applications"
    Do While M<100
    Do While N < 100
    SendKeys ActiveSheet.Cells(N, M).value
    loop
    loop

  • Sale Analysis Report

    Dear Expert,
      If i want to add some field or modification in the Sale report which is generated in [Sale And Purchaing] -> [Sale Analysis], besides excel marco , is there any different way i can modify the output??
    Regards,
    Kit

    Hi Kit,
    Hi Kit,
    I don't think you can modify the output of this report. You can change the layout and some standard visual things with the print layout designer, but you can't change the query that is executed in the background to run the Sales Analysis.
    Hope it helps,
    Adele

  • To download the Output of ALV to Excel file with Marco

    Hello Masters ,
    I m working on a ALV report in which either we can see the output or can download the ouptput and format that file before sending by mail..
    the following steps are currently used to download and format the ALV output .
    1. Save file form unix server
    2. Download the file to computer.
    3. Run a macro to format the execl file  and
    4. Send the file by mail.
    Apart from this I have to implement a new functionality by which we can directly send the result to spool so that it can be sent directly by mail .
    Can Anyone help me out????????
    Thanks & Regards
    Varlani Amit

    You will be having all data to be send in an internal table, same as your ALV internal table.
    you can provide a button or menu in alv screen to send directly without storing.
    for this you
    1. first write spool
    2. send it through mail.
    1. Writting a spool
    *Get the printer name from TVARVC table.
      select single low from tvarvc into l_destination
           where name = 'PRINTER'
             and type = 'P'
             and numb = '0000'.
      if sy-subrc ne 0.
         l_destination   = 'LOCL'.
      endif.
    *Get the print parameters.
      call function 'GET_PRINT_PARAMETERS'
        EXPORTING
          copies                 = 1
          department             = 'SYSTEM'
          destination            = l_destination
          expiration             = 2
          immediately            = ' '
          layout                 = 'X_65_255'
          line_count             = 65
          line_size              = 255
          list_name              = 'ABC'
          list_text              = 'XYZ
          mode                   = ' '
          new_list_id            = 'X'
          no_dialog              = 'X'
          receiver               = 'SAP*'
          release                = 'X'
          sap_cover_page         = 'X'
          user                   = sy-uname
        IMPORTING
          out_parameters         = l_params
        EXCEPTIONS
          archive_info_not_found = 1
          invalid_print_params   = 2
          invalid_archive_params = 3
          others                 = 4.
      case sy-subrc.
        when 1.
          raise get_print_info_not_found.
        when 2.
          raise get_print_invalid_prt_params.
        when 3.
          raise get_print_invalid_arch_params.
        when 4.
          raise get_print_others.
      endcase.
    *start spool writing.
      new-page print on parameters l_params no dialog.
      uline.
      skip.
      write: 27 text-022 centered. "report name
      skip.
      uline.
    Do formatting as you want.
      loop at ALV_OUTPUT_INTERNAL TABLE..
        write:/  ALV_OUTPUT_INTERNAL TABLE-fileds...
      endloop.
      uline.
    *end spool writing.
      new-page print off.
    2. Sending a mail.
    Use FM 'SO_DOCUMENT_SEND_API1' for sending a mail

  • Automatically open, save and close excel?

    I need import data from Excel to SQL.
    Now, I use tSQL to directly read the excel files and transform to the SQL table.
    As the user Excel is not a good format for SQL to read, I need use formula to transform the excel to be a SQL readable format.
    Now, I add a sheet to copy the data from the sheet which user input the data and then ask the user to copy the excel to a specific location for import.
    However, this will make the data in the excel double and result a large excel file.
    I am thinking if it is possible to create a excel to use formula to copy the data from another excel.
    Then, I need find some method to open that excel, let the content refresh from the source excel, save and close it.
    Then I can directly use this excel for data import.
    Is there any simple way to do so? I don't know marco much...
    Ivan

    No formula could do this (Automatically open, save and close excel).
    You need to recode a marco or write a macro. Why donot you ask in msdn?
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=exceldev&filter=alltypes&sort=lastpostdesc
    example:
    Sub auto_open()
    Application.OnTime Now + TimeValue("00:01:00"), "wswx"
    End Sub
    Sub
    wswx() If Not ThisWorkbook.Saved
    Then ThisWorkbook.Save
    ThisWorkbook.Close
    End Sub
    KR

  • EXCEL ONLINE - Automaticly refresh data in excel from the online data

    Hi
    Love some help with this one
    QUESTION
    Is their anyway 5 users can use excelonline fileA and also keep a uneditable version fileA open in desktop excel and manually refresh the desktop version to see the latest version of the document in uneditable mode still of course?
    DESRCIPTION
    We use excelonline for about 5 users to access the same 5MB excel file. Now because excelonline does not allow marcos to be run, proper printing and proper copy and paste in html formats (we need to copy and paste sheets into outlook in html format or run
    macros) we need to open the desktopexcel application to use printing and copy functions into outlook.
    All 5 users need to enter the data in excelonline then SYNC now in sharepoint so the excel is updated and then open desktopexcel then a pop up to use latest server version asks us to use latest. We want latest so we then click okay. Great we now have the
    latest data. We can then run macros etc....
    We then close down desktopexcel and enter more online data through the day and have to repeat SYNC now in sharepoint so the excel is updated and then open desktopexcel then a pop up to use latest server version asks us to use latest. We want latest so we
    then click okay. Great we now have the latest data. We can then run macros etc....
    We have to repeat this many times over the same day... that is 5 people doing like this though out the day. Wasting alot of time.
    QUESTION
    Is their anyway 5 users can use excelonline fileA and also keep a uneditable version fileA open in desktop excel and manually refresh the desktop version to see the latest version of the document in uneditable mode still of course?
    Regards
    Lee

    Thank you.
    If I understand correctly from your advice, that is I should create QaaWs to pull data from SAP BI, which will return data in tabular format. Map the data in the cell range of a hidden tab, re-arrange and format the data into the row?
      Another concern: I need to display data for 4 quarters (Q1, Q2, Q3,Q4) in the dashboard, but QAAWS will only pulls data when the data is available in the database.
       Eg. Only data for 3 quarters are found in the database, QAAWS will return data for Q1, Q2,Q4.
             This will mess up the position fixed in the xcelsius. Do you have any suggestion on this?
       Sorry to bother u for the simple questions.
       Thank you.

  • Excel Pivot Table with Date Hierarchies - query performance degradation

    For the sake of this explanation, I’m going to try and keep it simple. Slicing the data by additional dimensions only makes the issue worse. I’ll keep this description to one fact table and three dimensions. Also, I’m fairly new to SSAS Tabular; I’ve worked
    with SSAS Multidimensional in the past.
    We’ve got a fact table that keeps track of bill pay payments made over time. Currently, we only have about six months of data, with the fact row count at just under 900,000 rows. The grain is daily.
    There is an Account dimension (approx. 460,000 rows), with details about the individual making a payment.
    There is a Payment Category dimension (approx.. 35,000 rows), which essentially groups various Payees into groups which we like to report on: Automobile Loan, Mortgage, Insurance, etc.
    There is the requisite Date dimension  (exactly 62093 rows-more days than we need?), which allows visibility as to what is being paid when.
    Using this DW model, I’ve created a SSAS BISM Tabular model, from which Excel 2010 is ultimately used to perform some analysis, using Pivot Tables. In the tabular model, for easier navigation (doing what I’ve always done in SSAS MultiDimensional), I’ve created
    several Date Hierarchies, Year-Month, Year-Quarter-Month, etc.
    There are currently only two measures defined in the Tabular model: one for the “Sum of PaymentAmount”; one for the “PaymentsProcessed”.
    OK, in Excel 2010, using a Pivot Table, drag the “Sum of PaymentAmount” measure to the Values section, next to/under the PivotTable Field List. Not too exciting, just the grand total of all Payments, for all time.
    Drag the “YearMonth” hierarchy (from the Date dimension) to the “Column Labels” section. After expanding the year hierarchy to see the months, now the totals are for each of the months, for which we have data, for June through November, 2013.
    Drag the “PaymentCategory” (from the Payment Categories dimension) to the “Report Filter” section. Filter accordingly: We just want to see the monthly totals for “Automobile Loans”.
    Now, some details. Drag the “AccountSK” (hiding the actual account numbers) to the “Row Labels” section. This shows all accounts that have made Automobile Loan payments over the last six months, showing the actual payment amounts.
    So far, so good. Remember, I’m using a Date Hierarchy here, in this case “YearMonth”
    Now, if any of the other attributes on the Account dimension table, say “CreditScore”, or “LongName”, are subsequently dragged over to the “Row Lables” section, under the “AccountSK”, the results will never come back, before timing out or by giving up and
    pressing ESCape!
    If this exact scenario is done by removing the Date Hierarchy, “YearMonth” from the “Column Labels” and replace it with “Year” and “MonthName” attributes from the Date dimension, these fields not being in any sort of hierarchy, adding an additional “Account”
    attribute does not cause any substantial delay.
    What I’m trying to find out is why is this happening? Is there anything I can do as a work around, other than what I’ve done by not using a Date Hierarchy? Is this a known issue with DAX and the query conversion to MDX? Something else?
    I’ve done a SQL Profiler trace, but I’m not sure at this point what it all means. In the MDX query there is a CrossJoin involved. There are also numerous VertiPaq Scans which seems to be going through each and every AccountSK in the Account dimension, not
    just the ones filtered, to get an additional attribute (About 3,600 accounts which are “Automobile Loan” payments.).
    Any thoughts?
    Thanks! Happy Holidays!
    AAO

    Thanks for your reply Marco. I've been reading your book, too, getting into Tabular.
    I've set up the Excel Pivot Table using either the Year/MonthName levels, or the YearMonth hierarchy and then adding the additional attribute for the CreditScore.
    Incidentally, when using the YearMonth hierarchy and adding the CreditScore, all is well, if the Year has not been "opened". When this is done, I suspect the same thing is going on.
    From SQL Profiler, each of the individual MDX queries below (formatted a bit for readability).
    Thanks!
    // MDX query using separate Year and MonthName levels, NO hierarchy.
    SELECT 
    NON EMPTY 
    Hierarchize(
    DrilldownMember(
    CrossJoin(
    {[Date].[Year].[All],[Date].[Year].[Year].AllMembers}, 
    {([Date].[MonthName].[All])}
    ,[Date].[Year].[Year].AllMembers, [Date].[MonthName]
    DIMENSION PROPERTIES PARENT_UNIQUE_NAME,HIERARCHY_UNIQUE_NAME 
    ON COLUMNS, 
    NON EMPTY 
    Hierarchize(
    DrilldownMember(
    CrossJoin(
    {[Accounts].[AccountSK].[All],[Accounts].[AccountSK].[AccountSK].AllMembers}, 
    {([Accounts].[CreditScore].[All])}
    ,[Accounts].[AccountSK].[AccountSK].AllMembers, [Accounts].[CreditScore]
    DIMENSION PROPERTIES PARENT_UNIQUE_NAME,HIERARCHY_UNIQUE_NAME 
    ON ROWS  
    FROM [PscuPrototype] 
    WHERE ([PaymentCategories].[PaymentCategory].&[Automobile Loan],[Measures].[Sum of PaymentAmount]) 
    CELL PROPERTIES VALUE, FORMAT_STRING, LANGUAGE, BACK_COLOR, FORE_COLOR, FONT_FLAGS
    // MDX query using separate YearMonth hierarchy (Year, MonthName).
    SELECT 
    NON EMPTY 
    Hierarchize(
    DrilldownMember(
    {{DrilldownLevel({[Date].[YearMonth].[All]},,,INCLUDE_CALC_MEMBERS)}}, 
    {[Date].[YearMonth].[Year].&[2013]},,,INCLUDE_CALC_MEMBERS
    DIMENSION PROPERTIES PARENT_UNIQUE_NAME,HIERARCHY_UNIQUE_NAME 
    ON COLUMNS,
    NON EMPTY 
    Hierarchize(
    DrilldownMember(
    CrossJoin(
    {[Accounts].[AccountSK].[All],[Accounts].[AccountSK].[AccountSK].AllMembers}, 
    {([Accounts].[CreditScore].[All])}
    ,[Accounts].[AccountSK].[AccountSK].AllMembers, [Accounts].[CreditScore]
    DIMENSION PROPERTIES PARENT_UNIQUE_NAME,HIERARCHY_UNIQUE_NAME 
    ON ROWS  
    FROM [PscuPrototype] 
    WHERE ([PaymentCategories].[PaymentCategory].&[Automobile Loan],[Measures].[Sum of PaymentAmount]) 
    CELL PROPERTIES VALUE, FORMAT_STRING, LANGUAGE, BACK_COLOR, FORE_COLOR, FONT_FLAGS
    AAO

  • Excel 2010 Pivot Table VBA Not Refreshing Table

    My company recently upgraded from Excel 2003 to 2010. I had VBA written to take source data and convert it into a number of Pivot Tables on a number of worksheets. It has been working fine for years. After upgrading to 2010 the VBA crashed. I tracked it
    down to the fact that when my code was making changes to the Pivot Tables (changing fields, filters, etc...) the pivot table on the worksheet had no data, but the fields were there. I can manually go to the pivot table and manually refresh and all the data
    comes in.
    So I tried adding the VBA code to refresh the pivot table, but the pivot tables will not refresh with data.
    I tried:
    ActiveSheet.PivotTables("WO Pivot").RefreshTable
    and
    ActiveWorkbook.RefreshAll
    And these did not work.
    I also tried recording a macro for the manual steps to refresh and got:
     ActiveSheet.PivotTables("WO Pivot").PivotCache.Refresh
    This does not work either.
    The PivotTable name is correct, but I tried using the number as well, and the name works for other code manipulating the the pivot table.
    e.g.:
    With ActiveSheet.PivotTables("WOPivot").PivotFields("Task Title")
          .Orientation = xlRowField .Position = 2
          .Subtotals = Array(False, False, False, False, False, False, False, False, False, False, _False, False)
    End
    With Why isn't this working? Is there another way to refresh pivot table data in 2010?
    Thanks. P.S. I've tried formating this so it is readable, but it comes out garbled. Hope this looks better.

    The solution above didn't work for me, but the following did the trick:
    ActiveSheet.PivotTables("WOPivot").PivotCache.Refresh
    By the way, I identified it by recording a macro, then going on the Pivot Table that needed refreshing and pressing F9 to refresh it. The line of VBA code above was the result.
    Cheers,
    Marco.

  • How to sync two excel files, the content is the same in both files after edit.

    I have two excel files, which are data and edit by multi users, how can I sync the master files to the copy files after edit?
    Is this operation required VBA? marco?

    Hi,
    Your request could be done via VBA code. Here are two ideas.
    One:
    Syncing the data from master file to the copy file without opening copy file. Sample code
    Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Count > 1 Then Exit Sub
    Dim cnn As Object, SQL$, s$
    Select Case True
    Case Target.Value = ""
    s = "null"
    Case IsDate(Target.Value)
    s = "#" & Target.Value & "#"
    Case IsNumeric(Target.Value)
    s = Target.Value
    Case Else
    s = "'" & Target.Value & "'"
    End Select
    Set cnn = CreateObject("ADODB.Connection")
    cnn.Open "provider=microsoft.jet.oledb.4.0;extended properties='excel 8.0;hdr=no';data source=" & ThisWorkbook.Path & "\test folder\Book2.xls"
    SQL = "update [Sheet1$" & Target.Address(0, 0) & ":" & Target.Address(0, 0) & "] set f1=" & s
    cnn.Execute (SQL)
    cnn.Close
    Set cnn = Nothing
    End Sub
    Two:
    Saving the master file as copy file before closing. Reference:
    https://msdn.microsoft.com/en-us/library/office/ff194765.aspx?f=255&MSPPError=-2147217396
    If you have any further question about coding, I recommend you post the question to the MSDN forum for Excel
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=exceldev&filter=alltypes&sort=lastpostdesc
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    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.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected].

  • Error while loading data from EXCEL to OWB

    Hi Marcos,
    Thank you. I got way.
    I did in the following steps...
    1. I created system dsn odbc_excel.
    2. I created initSID.ora
    3. I updated in the listener.ora.
    4. I created a soure module in odbc in owb.
    5. I created destination module in oracle where I want to load the data from excel.
    6. I am able to get the metadata of excel.
    7. I created a mapping.
    8. Validation and Generation phases completed successfully.
    9. At the time of deployment I got the following error.
    ORA-06550: line 16, column 22:
    PL/SQL: ORA-04052: error occurred when looking up remote object odbc_excel.EmployeeRange@EXCEL_SID.US.ORACLE.COM@CONNECTOR_EXCEL_OWB_SRC_DEST
    ORA-00604: error occurred at recursive SQL level 1
    ORA-02019: connection description for remote database not found
    here
    --excel_sid is the service name given in listener.ora.
    --connector_excel_owb_src_dest is the connector from soruce to destination.
    --Employee range is sheet name of excel.
    I am fighting with this problem from past few days...
    Thanks and regards
    Gowtham
    Message was edited by:
    Gowtham Sen

    Maybe you can consider save excel as .csv files and then you can load them as flatfiles to external table in OWB.

  • Save as excel problem

    Post Author: Marco Nardelli
    CA Forum: Deployment
    hi everyone
    I'using BO 6.5.1 and I try to export different BO reports (about 200 rows) to excel 2000 SR-1.
    But when I try to open the xls file it doesn't work.
    I reduced the number of rows exported from BO and excel works fine.
    At the end I reduced the BO report to the first 4 rows, because when I included the fifth row I got the problem.
    So I thought I found the critical row - it can have a strange character
    or something like that in one of its columns, I thought...
    But if I export to xls a report with only this fifth rows it always works fine.
    In this sense I found many critical rows
    anyone can give me an explanation for this apparently strange behaviour?
    thanks to everyone
    ciao
    marco

    Post Author: sreenivas
    CA Forum: Deployment
    Hi
    you better to go macro's because it works fine.
    you can script and export your mentioned path.
    sreenivas

  • Can't Open Excel.

    I got an automatic update over the weekend, now I cannot open my Microsoft Excel program. I work in a 1:1 school, so our site license loads excel through an imaging process.  So I cannot reload the software without re-imaging my computer, and losing any unsaved files.  Is there any way to fix this or get my excel to work?  Here is the error message I get. 
    Date/Time:  
    2014-03-24 14:52:51.707 -0500
    OS Version: 
    Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  59E729E6-84C3-F3AD-FB88-CA381D8A1A96
    Crashed Thread:  0
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    dyld: launch, loading dependent libraries
    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:
    0x1b13000 -  0x1b2cff7 +com.microsoft.mbukernel (14.3.9 - 14.3.9) <57864ED6-EAE3-64B1-FDF8-C6DFB4F8EF50> /Applications/Microsoft Office 2011/*/mbukernel.framework/Versions/14/mbukernel
    0x1b43000 -  0x1b85fe7 +com.microsoft.ribbon (14.3.9 - 14.3.9) <F254CC59-7053-8281-527A-EBA1CABA73F0> /Applications/Microsoft Office 2011/*/MBURibbon.framework/Versions/14/MBURibbon
    0x1bab000 -  0x1baeff7 +com.microsoft.mbunamedstrings (14.3.9 - 14.3.9) <8B73C076-63BB-533A-7EB7-4E35574F5D11> /Applications/Microsoft Office 2011/*/mbunamedstrings.framework/Versions/14/mbunamedstrings
    0x1bb6000 -  0x1bbaff7 +com.microsoft.frameworks.officewindowlocalizer (14.3.9 - 14.3.9) <482BE01B-1810-73B8-E9BA-CF8315CD2CCF> /Applications/Microsoft Office 2011/*/OfficeWindowLocalizer.framework/Versions/14/OfficeWindowLocalizer
    0x1bc3000 -  0x1c34fe3 +com.microsoft.netlib (14.3.9 - 14.3.9) <91A2C1B5-E376-E561-BC3A-EFDEE65BBF1C> /Applications/Microsoft Office 2011/*/Netlib.framework/Versions/14/Netlib
    0x1c4b000 -  0x1e81ff3 +com.microsoft.mcp (14.3.9 - 14.3.9) <E6FFAF31-418D-F409-6856-2B15554D3D3E> /Applications/Microsoft Office 2011/*/MicrosoftComponentPlugin.framework/Versions/14/MicrosoftComponentPlugin
    0x1f42000 -  0x26acfef +com.microsoft.office (14.3.9 - 14.3.9) <B324B603-F64D-480F-8F91-B58800E629D6> /Applications/Microsoft Office 2011/*/MicrosoftOffice.framework/Versions/14/MicrosoftOffice
    0x2806000 -  0x28abfeb +com.microsoft.ole (14.3.9 - 14.3.9) <CDDF1433-EB86-349B-9158-03C25CE44793> /Applications/Microsoft Office 2011/*/MicrosoftOLE.framework/Versions/14/MicrosoftOLE
    0x28cd000 -  0x296cffb +com.microsoft.oleautomation (14.3.9 - 14.3.9) <DF7AEAE7-F0A6-B65D-2FFC-4DB0F55A7180> /Applications/Microsoft Office 2011/*/MicrosoftOLEAutomation.framework/Versions/14/MicrosoftOLEAutomation
    0x299e000 -  0x29d2fe3 +com.microsoft.urlmon (14.3.9 - 14.3.9) <0DB5C7C7-5DC2-F227-9081-6294BF44C397> /Applications/Microsoft Office 2011/*/StdUrlMoniker.framework/Versions/14/StdUrlMoniker
    0x29e5000 -  0x29f2fff +com.microsoft.merp (2.2.4 - 2.2.4) <074D0A3D-30E7-DB3F-E20C-0BED521B4860> /Applications/Microsoft Office 2011/*/merp.framework/Versions/14/merp
    0x2a00000 -  0x388ffef +com.microsoft.officeart (14.3.9 - 14.3.9) <4469BAD7-D04B-2AF2-4406-21854B272C75> /Applications/Microsoft Office 2011/*/OfficeArt.framework/Versions/14/OfficeArt
    0x3b4f000 -  0x3b59ff7 +com.microsoft.oleo (14.3.9 - 14.3.9) <1035C148-2FDB-24E4-560D-441294F98B2A> /Applications/Microsoft Office 2011/*/MicrosoftOleo.framework/Versions/14/MicrosoftOleo
    0x3b64000 -  0x3fdbff7 +com.microsoft.chart (14.3.9 - 14.3.9) <853EC50E-BBB1-B628-7F4F-A0A4E2C64CCB> /Applications/Microsoft Office 2011/*/MicrosoftChartPlugin.framework/Versions/14/MicrosoftChartPlugin
    0x4122000 -  0x4139ff3 +com.microsoft.mathfont (14.3.9 - 14.3.9) <B9054A40-DEE7-D315-1778-FF692CF7EE60> /Applications/Microsoft Office 2011/*/MicrosoftMathFont.framework/Versions/14/MicrosoftMathFont
    0x4141000 -  0x4335feb +com.microsoft.msxml (14.3.9 - 14.3.9) <B13F4C22-B791-41E1-A85F-66352E97355A> /Applications/Microsoft Office 2011/*/MSXML.framework/Versions/14/MSXML
    0x43a7000 -  0x4404ff7 +com.microsoft.wlmuser (14.3.9 - 14.3.9) <1E501129-D2F3-5403-D122-897FA60E4E63> /Applications/Microsoft Office 2011/*/WLMUser.framework/Versions/14/WLMUser
    0x4429000 -  0x4456fe3 +com.microsoft.wlmkernel (14.3.9 - 14.3.9) <55FFE62A-10D2-7C27-DFE2-77C3B481D385> /Applications/Microsoft Office 2011/*/WLMKernel.framework/Versions/14/WLMKernel
    0x446d000 -  0x4497fff +com.microsoft.wlmgraphicsdevice (14.3.9 - 14.3.9) <BF9BB352-5E25-E6BD-5C82-3AD281755FB4> /Applications/Microsoft Office 2011/*/WLMGraphicsDevice.framework/Versions/14/WLMGraphicsDevice
    0x44b3000 -  0x4519ffb +com.microsoft.mbuCloudServices (14.3.9 - 14.3.9) <8AED2131-6750-F00A-966E-D5B7B2DEE8E4> /Applications/Microsoft Office 2011/*/MicrosoftCloudServices.framework/Versions/14/MicrosoftCloudServices
    0x453c000 -  0x50cdff7 +com.microsoft.gfx (14.3.9 - 14.3.9) <6B1C64CA-01E4-A1B0-1612-174988A37E19> /Applications/Microsoft Office 2011/*/Gfx.framework/Versions/14/Gfx
    0x5147000 -  0x5503ff7 +com.microsoft.igx (14.3.9 - 14.3.9) <11D61183-D8A9-11FA-8214-A6C763D8B117> /Applications/Microsoft Office 2011/*/SmartArt.framework/Versions/14/SmartArt
    0x55cf000 -  0x55d3ff3 +com.microsoft.mbustrings (14.3.9 - 14.3.9) <263A9E38-C3D8-A770-1A13-FAAF8F3F3E75> /Applications/Microsoft Office 2011/*/mbustrings.framework/Versions/14/mbustrings
    0x55dc000 -  0x55deff7 +com.microsoft.mbulocale (14.3.9 - 14.3.9) <9D2AC5DF-4A6B-FB57-191E-834A45C9E3DD> /Applications/Microsoft Office 2011/*/mbulocale.framework/Versions/14/mbulocale
    0x55e6000 -  0x563dfe7 +com.microsoft.uniscribe (14.3.9 - 14.3.9) <7BCB051C-69DF-60D2-AB87-D9948C92BDC7> /Applications/Microsoft Office 2011/*/Uniscribe.framework/Versions/14/Uniscribe
    0x565a000 -  0x567bfeb +com.microsoft.wlmstrings (14.3.9 - 14.3.9) <6D3059F5-FD0B-5DE3-D2C7-CCCC70C46E66> /Applications/Microsoft Office 2011/*/wlmstrings.framework/Versions/14/wlmstrings
    0x5689000 -  0x56cbfe3 +com.microsoft.mviewlib (14.3.9 - 14.3.9) <545B1BAD-80C4-C7B2-8B1C-AFCE81FE2A72> /Applications/Microsoft Office 2011/*/MViewLib.framework/Versions/14/MViewLib
    0x56f4000 -  0x574bffb +com.microsoft.CocoaUI (14.3.9 - 14.3.9) <88090851-6875-7740-A02E-BAC667A6576B> /Applications/Microsoft Office 2011/*/CocoaUI.framework/Versions/14/CocoaUI
    0x5780000 -  0x58befef +com.microsoft.MicrosoftOfficeDRM (14.3.9 - 14.3.9) <D53DB741-F372-D929-568F-036E49EF85C5> /Applications/Microsoft Office 2011/*/MicrosoftOfficeDRM.framework/Versions/14/MicrosoftOfficeDRM
    0x58ed000 -  0x592aff3 +com.microsoft.setupui (14.3.9 - 14.3.9) <9A8D4E5D-6BD6-C90C-431E-1E9634B78B06> /Applications/Microsoft Office 2011/*/MicrosoftSetupUI.framework/Versions/14/MicrosoftSetupUI
    0x5967000 -  0x59b1fef +com.microsoft.menulib (14.3.9 - 14.3.9) <59C9B13E-6C8D-DFC2-B31E-03822924D4C6> /Applications/Microsoft Office 2011/*/MicrosoftMenuLibrary.framework/Versions/14/MicrosoftMenuLibrary
    0x59c9000 -  0x59d7ffb +com.microsoft.mbuinstrument (14.3.9 - 14.3.9) <27E5A567-D30D-F955-745C-6F43CADDDC6E> /Applications/Microsoft Office 2011/*/mbuinstrument.framework/Versions/14/mbuinstrument
    0x59e2000 -  0x5ae0fef +com.microsoft.metex (14.3.9 - 14.3.9) <C139C9EC-C100-BB90-1EC0-D99166230F54> /Applications/Microsoft Office 2011/*/MetEx.framework/Versions/14/MetEx
    0x5b2e000 -  0x5b2fff7 +com.microsoft.CocoaTooltipParser (14.3.9 - 14.3.9) <A6645DBD-F0F1-49E6-ADE6-F3B84B4D9CB4> /Applications/Microsoft Office 2011/*/CocoaTooltipParser.framework/Versions/14/CocoaTooltipParser
    0x5b35000 -  0x5b9eff3 +com.microsoft.docex (14.3.9 - 14.3.9) <9CBDDDD7-EB46-23CC-AF1B-5A9BD00F26E5> /Applications/Microsoft Office 2011/*/DocEx.framework/Versions/14/DocEx
    0x5bb0000 -  0x5bc9ff3 +com.microsoft.frameworks.winhttp (14.3.9 - 14.3.9) <1958412A-5CFB-ECD1-959A-28DE01EDD0D6> /Applications/Microsoft Office 2011/*/WinHttp.framework/Versions/14/WinHttp
    0x5bd5000 -  0x5be6fe7 +com.microsoft.frameworks.wincrypto (14.3.9 - 14.3.9) <DD8195EE-5F0A-5824-6628-86222C8921AA> /Applications/Microsoft Office 2011/*/WinCrypto.framework/Versions/14/WinCrypto
    0x5bf0000 -  0x5bfbff7 +com.microsoft.credui (14.3.9 - 14.3.9) <D2D3A86C-165B-D22F-5DC8-E0E3480801AF> /Applications/Microsoft Office 2011/*/MicrosoftCredui.framework/Versions/14/MicrosoftCredui
    0x5c05000 -  0x5c05fff +com.microsoft.ddcs (14.3.9 - 14.3.9) <B1AA8BED-FD90-890A-021B-54E87627CD42> /Applications/Microsoft Office 2011/*/MicrosoftDDCS.framework/Versions/14/MicrosoftDDCS
    0x5c0a000 -  0x5c14fef +com.microsoft.frameworks.winapiui (14.3.9 - 14.3.9) <CAF46C08-F62F-6FC5-EC25-FA23BAD554F6> /Applications/Microsoft Office 2011/*/WinAPIUI.framework/Versions/14/WinAPIUI
    0x5c1e000 -  0x5c54ff7 +com.microsoft.msgrlibclient (8.0.0 - 8.0.0) <E0AAF57B-F768-1703-3F45-3E30D834F611> /Applications/Microsoft Office 2011/*/MsgrLibClient.framework/Versions/14/MsgrLibClient
    0x5c74000 -  0x60c4ff7 +com.microsoft.csi (14.3.9 - 14.3.9) <F85326F9-364B-2919-36A1-D99ED76E671E> /Applications/Microsoft Office 2011/*/MicrosoftCSI.framework/Versions/14/MicrosoftCSI
    0x619b000 -  0x61b3feb +com.microsoft.threadpool (14.3.9 - 14.3.9) <F00B18F4-8B12-122C-C6B6-58433C874BEB> /Applications/Microsoft Office 2011/*/ThreadPool.framework/Versions/14/ThreadPool
    0x61c5000 -  0x61d1ff3 +com.microsoft.fba (14.3.9 - 14.3.9) <6CB64751-4B28-5EA1-83B3-B104173FD52E> /Applications/Microsoft Office 2011/*/MicrosoftFBA.framework/Versions/14/MicrosoftFBA
    0x61df000 -  0x643cffb +com.microsoft.XPG (14.3.9 - 14.3.9) <BD064567-F130-DA58-5E94-AC58B2271725> /Applications/Microsoft Office 2011/*/XPG.framework/Versions/14/XPG
    0x646f000 -  0x6475fe7 +com.microsoft.mbufs (14.3.9 - 14.3.9) <9A5CFFDE-22F6-A1BE-C298-42B59F1D8321> /Applications/Microsoft Office 2011/*/MicrosoftFS.framework/Versions/14/MicrosoftFS
    0x647e000 -  0x6599ff7 +mbupgx.dylib (14) <26E50DFC-0EFA-76F0-FB25-1EB3655DDEE3> /Applications/Microsoft Office 2011/*/MicrosoftSetupUI.framework/Libraries/mbupgx.dylib
    0x65b3000 -  0x65ecfe3 +com.microsoft.molc.framework (14.3.9 - 14.3.9) <B46E5123-857B-DCE3-8477-3AD3757C06CC> /Applications/Microsoft Office 2011/*/molc.framework/Versions/14/molc
    0x6603000 -  0x6612ff3 +com.microsoft.wlmfile (14.3.9 - 14.3.9) <C212A203-8B64-5DE3-D1D3-B5F39EB9B36B> /Applications/Microsoft Office 2011/*/MicrosoftWlmFile.framework/Versions/14/MicrosoftWlmFile
    0x661c000 -  0x66befe7 +com.microsoft.webservices (14.3.9 - 14.3.9) <30DE1415-CDA2-09FC-DD10-C733E4734FDF> /Applications/Microsoft Office 2011/*/MicrosoftWebServices.framework/Versions/14/MicrosoftWebServices
    0x66d8000 -  0x6823fef +com.microsoft.Oimg (14.3.9 - 14.3.9) <EB706D82-6A56-8871-E5D7-2689D4CE41F4> /Applications/Microsoft Office 2011/*/Oimg.framework/Versions/14/Oimg
    0x68b4000 -  0x69fbff7 +com.microsoft.msls3 (14.3.9 - 14.3.9) <C24FF064-265C-5389-7300-50EBC7EAE812> /Applications/Microsoft Office 2011/*/MicrosoftPTLS.framework/Versions/14/MicrosoftPTLS
    0x8fece000 - 0x8ff00417  dyld (239.4) <2E655535-479B-3E48-ADD3-6278819CA38A> /usr/lib/dyld
    0x90008000 - 0x90009fff  com.apple.marco (10.0 - 1000) <F7AD1FF7-5B1E-3D3C-AF00-FA3A43118CE5> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
    0x9000a000 - 0x90059ff1  com.apple.HIServices (1.22 - 467.2) <F47161AA-E19F-3357-862F-5B4C8DA97975> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9005a000 - 0x905c7fff  com.apple.QuartzComposer (5.1 - 319) <77419C8D-B822-3649-BBB4-2CF0F0993E9A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x905c8000 - 0x905d5ff7  com.apple.AppleFSCompression (56 - 1.0) <0C44B3E4-C4A7-3A65-9C1A-334CA3E35BDB> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x905df000 - 0x90632ff3  com.apple.CoreMediaIO (407.0 - 4561) <A756270D-CA9A-36CB-B698-3D9EEAB9C50E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x90633000 - 0x90650ff4  libsystem_kernel.dylib (2422.90.20) <C823B3BD-F818-3D7A-9FB7-9BDE00E2BEA1> /usr/lib/system/libsystem_kernel.dylib
    0x90651000 - 0x909c6ff9  com.apple.HIToolbox (2.1 - 697.4) <8CB677B7-43FC-3534-A685-5A5445C95F7D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x909c7000 - 0x909c9ffb  libRadiance.dylib (1042) <22E517A8-4725-3175-B5D1-5573FBE780B3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x909ca000 - 0x90a3dfff  com.apple.SearchKit (1.4.0 - 1.4.0) <6F607AB6-7553-37BA-BEC5-98FD7C27FAD7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90a3e000 - 0x90a48ff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <6CD2D996-2972-30A3-B4AD-BB1B816EFDCC> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90c14000 - 0x90f82fff  com.apple.MediaToolbox (1.0 - 1273.49) <236C702F-BC87-3255-A8B3-C7B2C597DBCA> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x90f83000 - 0x90ff9ff3  com.apple.securityfoundation (6.0 - 55122.1) <18024F59-DE2B-3FC5-A29F-8F2B27349685> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x90ffa000 - 0x91012ff7  libsystem_malloc.dylib (23.10.1) <CB52555E-0F5B-31E3-A42A-FD4F930E2192> /usr/lib/system/libsystem_malloc.dylib
    0x91013000 - 0x91093ff7  com.apple.CoreServices.OSServices (600.4 - 600.4) <CD464F18-7E2A-3FF7-9908-CB6530158FBF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91094000 - 0x910f0ffa  com.apple.print.framework.PrintCore (9.0 - 428) <3E248391-2669-328B-B84F-8763FE8E92BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91114000 - 0x91204ffb  libiconv.2.dylib (41) <848FEBA7-2E3E-3ECB-BD59-007F32468787> /usr/lib/libiconv.2.dylib
    0x91206000 - 0x91237ffa  libsystem_m.dylib (3047.16) <28E614E8-7802-3E84-960A-AD4721EF10F7> /usr/lib/system/libsystem_m.dylib
    0x91238000 - 0x91336fff  libJP2.dylib (1042) <795B3209-2382-3F31-AEF7-588E4BCAAF06> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91337000 - 0x91387fff  com.apple.opencl (2.3.59 - 2.3.59) <4BEFE83C-1C89-3BB6-A445-9BE680C84FB3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x91388000 - 0x913a3ff6  libPng.dylib (1042) <1ADB59C7-343E-30CA-A8D2-93540C4A2E7D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x913a4000 - 0x91490ff7  libxml2.2.dylib (26) <32040145-6FD6-3AD2-B98B-39F73BF9AC47> /usr/lib/libxml2.2.dylib
    0x91491000 - 0x914acff5  com.apple.openscripting (1.4 - 157) <5C161A52-8D2F-3D56-A988-05727BED7A59> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x914ad000 - 0x914bbff7  libz.1.dylib (53) <858B4D9F-D87E-3D81-B07A-DF9632BD185F> /usr/lib/libz.1.dylib
    0x914bc000 - 0x914c0ffc  libpam.2.dylib (20) <50623D44-795F-3E28-AA85-23E0E7E2AE0E> /usr/lib/libpam.2.dylib
    0x914c1000 - 0x914c1ffd  libOpenScriptingUtil.dylib (157) <4D06E8ED-D312-34EA-A448-DFF45ADC3CE5> /usr/lib/libOpenScriptingUtil.dylib
    0x914c2000 - 0x9159cff6  com.apple.QuickLookUIFramework (5.0 - 622.7) <6F9C5661-0D7D-3B54-AC34-55E1A24EC05A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x9159d000 - 0x915f2ff7  com.apple.framework.internetaccounts (2.1 - 210) <3E555C08-C8FA-3175-8C3F-E49F6F5238A6> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x9162c000 - 0x91638fff  libkxld.dylib (2422.90.20) <28EAB745-E690-34E7-B9F0-BD05E507173B> /usr/lib/system/libkxld.dylib
    0x91639000 - 0x916a0ffc  com.apple.framework.CoreWLAN (4.3.2 - 432.47) <A02FAF3F-A8F4-3293-9321-AED904B5F069> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x916a1000 - 0x916c5ff7  libxpc.dylib (300.90.2) <5ACBBE2C-74EB-3E88-BCBF-C573095318A5> /usr/lib/system/libxpc.dylib
    0x916c6000 - 0x916d8fff  libsystem_asl.dylib (217.1.4) <51EB17C9-9F5B-39F3-B6CD-8EF238B05B89> /usr/lib/system/libsystem_asl.dylib
    0x916d9000 - 0x91737ffd  com.apple.AE (665.5 - 665.5) <54F2F247-160C-3A22-A6E3-5D49655A67AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x91738000 - 0x9179aff3  com.apple.imfoundation (10.0 - 1000) <20565092-0897-3E34-A35A-E1F027D53A26> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
    0x9179b000 - 0x91c42fe7  com.apple.CoreAUC (6.22.08 - 6.22.08) <3F9E2986-8FF9-3339-A0C8-DC1186C4A5EC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x91c43000 - 0x91c43fff  libkeymgr.dylib (28) <1B097DEA-011E-3B1C-86D5-6C7FAD5C765A> /usr/lib/system/libkeymgr.dylib
    0x91c44000 - 0x91c4bffe  com.apple.agl (3.2.3 - AGL-3.2.3) <3CD7521E-5FEA-34CA-9F40-87EECA27D7C0> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x91c4c000 - 0x92071fe3  com.apple.VideoToolbox (1.0 - 1273.49) <A581EEA0-25DF-386C-904D-26E51C3ED640> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x92072000 - 0x92072fff  com.apple.CoreServices (59 - 59) <06747539-5035-3307-8645-9BC4E7F89023> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x92073000 - 0x920dcfff  com.apple.SystemConfiguration (1.13 - 1.13) <144317BE-7AE5-3B8D-90CD-62DCDE9399E7> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x920dd000 - 0x920ddffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <85316395-817E-342D-8F41-88838EC6FB63> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x920de000 - 0x9211bff7  libauto.dylib (185.5) <CD008E66-4A0C-35F5-8D72-80D76A716A03> /usr/lib/libauto.dylib
    0x921c5000 - 0x921d0ffb  libcommonCrypto.dylib (60049) <F8E60C43-22EE-3E0B-9546-3365056901F1> /usr/lib/system/libcommonCrypto.dylib
    0x921d1000 - 0x921d8fff  libMatch.1.dylib (19) <3B3680FC-2AC9-37CC-B262-5ACE2CF8939A> /usr/lib/libMatch.1.dylib
    0x921d9000 - 0x922bcff7  libcrypto.0.9.8.dylib (50) <B367D3A3-FC1F-326C-92EC-CAD81666524D> /usr/lib/libcrypto.0.9.8.dylib
    0x922bd000 - 0x922c4ffb  libsystem_pthread.dylib (53.1.4) <8B1B7B84-1B5D-32A8-AC0D-1E689E5C8A4C> /usr/lib/system/libsystem_pthread.dylib
    0x922c5000 - 0x92370fff  libcrypto.0.9.7.dylib (106) <DA3D5F8E-5822-3D41-BC1C-FFE1CC9BB42B> /usr/lib/libcrypto.0.9.7.dylib
    0x92371000 - 0x923b3fff  libGLU.dylib (9.6) <6A7E248D-3936-3B0D-9BF2-E4F0D2FE5306> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x923bc000 - 0x92431ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <FD423680-01A1-357A-89A7-33910A87DE65> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x92432000 - 0x9282afff  com.apple.CoreGraphics (1.600.0 - 599.20.11) <82BA834B-C3D1-39CC-B9C3-5C4C976A3BCD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x9282b000 - 0x928d7ffb  libvMisc.dylib (423.32) <43873EFF-FB43-3301-BEE8-F2C3A046D7A6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x928d8000 - 0x928ebff7  com.apple.idsfoundation (10.0 - 1000) <67D0D240-D471-3882-8FAA-922FD91C3846> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
    0x928ec000 - 0x928faff7  com.apple.Sharing (132.2 - 132.2) <87DBFC7A-9689-3B8E-AD16-5A9DFF9DE625> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x928fb000 - 0x92b64fff  com.apple.AddressBook.framework (8.0 - 1369) <B47D95FD-FCD4-3BB3-B688-5597E67B5247> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x92b65000 - 0x92b7cff4  com.apple.CoreMediaAuthoring (2.2 - 947) <1D8AD09F-B8E5-3958-89F4-8470D25AE9AE> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x92b81000 - 0x92b83fff  com.apple.SecCodeWrapper (3.0 - 1) <066E1E30-2EEA-3166-8F86-D1054B50875B> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x92b84000 - 0x92b88ffc  com.apple.IOSurface (91 - 91) <DECEEB72-3C7E-3C21-9237-E5AD293F8B09> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x92b89000 - 0x92b89fff  com.apple.ApplicationServices (48 - 48) <7967F6FA-2984-3CC3-AD9A-7B9AEC562A2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x92b96000 - 0x92bc4ff3  com.apple.DebugSymbols (106 - 106) <FC70F4C9-B2A6-352F-9563-6C085E9DDDB8> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x92bc5000 - 0x92eaffd2  com.apple.vImage (7.0 - 7.0) <256972F0-3DBC-3CE1-9EE8-B48243868729> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x92eb0000 - 0x92ebcff7  com.apple.OpenDirectory (10.9 - 173.90.1) <B7440CD7-04F8-3558-B5AA-FD48381B14DE> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x92ebd000 - 0x92f0dff7  libcorecrypto.dylib (161.1) <135FD99E-2211-3DF4-825C-C9F816107F0C> /usr/lib/system/libcorecrypto.dylib
    0x92f0e000 - 0x92f62fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <95A1E1CF-FC3E-3203-8683-34823CD70B6B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x92f63000 - 0x92f87fff  libJPEG.dylib (1042) <AEC2D16E-12E6-3D85-933E-6728EBA802A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92f88000 - 0x92f8cffa  libGIF.dylib (1042) <A28C9045-5ACD-35FE-9499-E98B9C5A20D8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x92f8d000 - 0x92f8dfff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <DDAC0B59-F886-3AB1-98E8-C71FFF161CD4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x92f8e000 - 0x93353ff6  libLAPACK.dylib (1094.5) <E6286E68-3501-31AC-813E-75B3B3968011> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x93354000 - 0x9336aff9  com.apple.aps.framework (4.0 - 4.0) <F716BD85-21B6-3D84-BEA2-8BC617E1D08C> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x9336b000 - 0x9336ffff  com.apple.CommonPanels (1.2.6 - 96) <E7CA63C6-CEE9-3F0A-93A7-C12C653FFB80> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93370000 - 0x933a5ffd  libssl.0.9.8.dylib (50) <F3BEA2DF-DB84-37F0-B4C7-97C0A4DF19C9> /usr/lib/libssl.0.9.8.dylib
    0x933a6000 - 0x93508ff3  com.apple.CFNetwork (673.2.1 - 673.2.1) <6EA58F7C-35E9-37BF-A6B4-7DDB83A6B432> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x93509000 - 0x9351cfff  com.apple.ImageCapture (9.0 - 9.0) <63D5C96F-1893-3F35-ADFB-EE451AFD87E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9351d000 - 0x93526fff  com.apple.AppleSRP (5.0 - 1) <6B946F4B-7DC4-3E82-BF2C-BE0930E3CF47> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x9352d000 - 0x935cbff7  com.apple.PDFKit (2.9.1 - 2.9.1) <37D112C0-3AF4-399F-B1E0-09162CBA3741> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x935cc000 - 0x935cdffd  libunc.dylib (28) <22A126A1-DCFB-3BE5-A66B-C973F0A5D839> /usr/lib/system/libunc.dylib
    0x935ce000 - 0x935cefff  com.apple.Carbon (154 - 157) <6C29C608-97B4-306E-AEC5-6F48EDF7EFB5> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x935cf000 - 0x935d2ff7  com.apple.help (1.3.3 - 46) <AB6292FA-D3BC-3D56-B3A5-2BE630A503E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x935d3000 - 0x935d4fff  libSystem.B.dylib (1197.1.1) <E06132B8-2FD8-322D-A151-C9474B36B561> /usr/lib/libSystem.B.dylib
    0x935d5000 - 0x93698ff1  com.apple.CoreText (352.0 - 367.19) <14FD889D-4D6D-3D53-B28E-2E23975B3C9D> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x93699000 - 0x936d7ff7  com.apple.NavigationServices (3.8 - 215) <A093AAF0-248E-313E-BA82-01F69E269895> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x936e4000 - 0x93730ff7  libcups.2.dylib (372.2) <ED7CEA7C-9FD7-34E0-B960-268BD6AFA056> /usr/lib/libcups.2.dylib
    0x93731000 - 0x93787ff6  com.apple.ScalableUserInterface (1.0 - 1) <2C81641B-FA30-32FF-8B3E-3CB9BF53B2D9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x93788000 - 0x9379afff  libbsm.0.dylib (33) <1BE92DB5-0D2F-3BB5-BCC6-8A71EF2A3450> /usr/lib/libbsm.0.dylib
    0x9379b000 - 0x937c0ff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <FCF52905-85B1-375C-B0AA-B8251B614D2D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x937c1000 - 0x937c8ff1  com.apple.phonenumbers (1.1.1 - 105) <4279F426-BD5E-3716-A23E-5A718B01F466> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x937c9000 - 0x9383effb  com.apple.framework.IOKit (2.0.1 - 907.90.2) <AFF50D8E-7D1D-38B9-A77E-DF0C0C4C97E0> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9383f000 - 0x9384bffc  libbz2.1.0.dylib (29) <3CEF1E92-BA42-3F8A-8E8D-9E1F7658E5C7> /usr/lib/libbz2.1.0.dylib
    0x9384c000 - 0x93a4efff  com.apple.CoreFoundation (6.9 - 855.14) <756998B3-F507-3474-AFB2-769FC9CE5263> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93a4f000 - 0x93ae0fff  com.apple.ColorSync (4.9.0 - 4.9.0) <8366AE10-0396-3100-B87A-A176E8ECE7B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93ae1000 - 0x93aebff7  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <C4CC55E5-6CC4-307E-9499-AF89A6463AF4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x93aec000 - 0x93b0bff9  com.apple.framework.Apple80211 (9.3.1 - 931.58) <120A58B6-9DC7-3001-9735-C08661A3ECC0> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x93b0c000 - 0x93b0cfff  com.apple.quartzframework (1.5 - 1.5) <5BB3FDD4-4727-3D1B-9582-C96F36DA1542> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x93b0d000 - 0x93c24ffb  com.apple.WebKit (9537 - 9537.74.9) <27AE437D-1DBE-34E9-8FE5-E9A5BD5CEBB0> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x93c25000 - 0x93c6dfff  com.apple.PerformanceAnalysis (1.47 - 47) <EC8DB814-693E-354D-9571-A4B2F0350BDF> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x93c6e000 - 0x93caaff4  com.apple.RemoteViewServices (2.0 - 94) <BEEE6ADF-7DA3-3D68-BCB0-9863BE1A1F46> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x93cab000 - 0x93cbfff9  com.apple.MultitouchSupport.framework (245.13 - 245.13) <1576F96C-385B-3AAE-8A09-1D49091FE931> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x93cc4000 - 0x93cf5ff5  com.apple.GSS (4.0 - 2.0) <8C72F861-47F5-3641-9744-B5EF9647C827> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x93cf6000 - 0x93cf6ffe  com.apple.AOSMigrate (1.0 - 1) <E612B5AD-06AE-3BCB-BA14-F7B64714640A> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    0x93cf7000 - 0x93cfcff6  libcompiler_rt.dylib (35) <9924DF2E-D80B-3A21-920D-544A4597203F> /usr/lib/system/libcompiler_rt.dylib
    0x93cfd000 - 0x93d99fff  com.apple.QD (3.50 - 298) <F73FD4D4-17A4-37D6-AC06-7CA5A8BA1212> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x93d9a000 - 0x93defff3  com.apple.ImageCaptureCore (5.0 - 5.0) <69A007AE-4654-3C79-9AF6-5EC8F173F225> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x93e19000 - 0x93f2bffc  libsqlite3.dylib (158) <B3DB0FED-FE4C-314D-8329-CF7708C8AAF4> /usr/lib/libsqlite3.dylib
    0x93f5f000 - 0x93f6dff3  com.apple.opengl (9.6.0 - 9.6.0) <63941A8D-AACC-3C71-BE8C-4DAA913A1439> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93f6e000 - 0x93f99ff7  libpcap.A.dylib (42) <66FBEAD3-FE91-3A89-8706-FB95229068AC> /usr/lib/libpcap.A.dylib
    0x93f9a000 - 0x93fb8ff5  com.apple.frameworks.preferencepanes (16.0 - 16.0) <3E3368EE-CAD3-3096-89BC-D006A25A6294> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x93fb9000 - 0x940adfff  libFontParser.dylib (111.1) <D8F9B2A4-41A6-3407-8D80-13A841F97BE5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x940ae000 - 0x940b7fff  com.apple.audio.SoundManager (4.1 - 4.1) <68B7CEB7-AF09-3E24-8548-6ABF065B5186> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x940b8000 - 0x940bafff  libsystem_configuration.dylib (596.13) <57095AFE-3FF1-3F42-A43E-ED679409B827> /usr/lib/system/libsystem_configuration.dylib
    0x940bb000 - 0x943bcff1  com.apple.AOSKit (1.06 - 176) <E5067665-E177-37FF-AD38-0D995FB79741> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
    0x943bd000 - 0x9441eff7  com.apple.Symbolication (1.4 - 129) <843C9ED1-A0BB-37F5-B445-579327C5D764> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x9449c000 - 0x944a2ff7  com.apple.AddressBook.ContactsFoundation (8.0 - 1369) <9A9AB323-5534-3FD5-879C-763E4265AED1> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
    0x944f2000 - 0x944fbfff  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <CF8E5706-F744-3139-8A51-D52BF055D19F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x944fc000 - 0x947f1ff8  com.apple.CoreImage (9.2.7) <AD2199E4-B18B-3CFC-94C4-B1B8D20CFB8B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x947f4000 - 0x94811ffb  libresolv.9.dylib (54) <3EC12A7F-6BA1-3976-9F1F-6A4B76303028> /usr/lib/libresolv.9.dylib
    0x94812000 - 0x9487cff7  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <13EE6C12-B981-3132-864A-D493B91AE37E> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x9487d000 - 0x9487efff  liblangid.dylib (117) <F18F76C6-7E4B-34AD-AE81-C1C031BF2F7D> /usr/lib/liblangid.dylib
    0x94893000 - 0x949a3fed  com.apple.MediaControlSender (2.0 - 200.34.4) <48A88743-4EB7-364B-968F-43C17FFCEB97> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x949a4000 - 0x949a8ffe  libCoreVMClient.dylib (58.1) <0EB8FFD7-AFED-3A63-810E-29629831D43D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x949d6000 - 0x949d7ffc  com.apple.TrustEvaluationAgent (2.0 - 25) <064B485D-56E0-3DD7-BBE2-E08A5BFFF8B3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x949d8000 - 0x94a61fff  com.apple.CoreSymbolication (3.0 - 141) <4D580E6C-79B5-3583-9713-4DDF9A0D096C> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x94a62000 - 0x94a66ff7  libmacho.dylib (845) <D8E93E59-1F80-3413-B9CF-78B848F6E873> /usr/lib/system/libmacho.dylib
    0x94a72000 - 0x94a73fff  libremovefile.dylib (33) <ED35EA79-EB06-3B84-A6D4-B1A9D6B8648D> /usr/lib/system/libremovefile.dylib
    0x94a74000 - 0x94aaafff  com.apple.IconServices (25 - 25.17) <A4B5242B-765E-3D58-B066-BBEDB5947AAD> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x94ab6000 - 0x94ae5ff1  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <2215559E-C517-3122-906F-156FD3CC10AD> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x94ae6000 - 0x94c8e4af  libobjc.A.dylib (551.1) <31CBE178-E972-30D1-ADC6-4B8345CAE326> /usr/lib/libobjc.A.dylib
    0x94c8f000 - 0x94d5ffef  libvDSP.dylib (423.32) <E2FA7230-A001-3F6B-9ACF-6998C51AD7DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94e28000 - 0x94e59ff4  com.apple.securityinterface (9.0 - 55047) <0D5ED2B8-C973-3C91-BA45-22501A043263> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94ec1000 - 0x94ed1ff7  libsasl2.2.dylib (170) <CA1C07F6-8E17-315E-AE49-AB696DDE6707> /usr/lib/libsasl2.2.dylib
    0x95063000 - 0x950a2ff5  com.apple.ids (10.0 - 1000) <D28CFCBA-F7C4-3456-92E4-0B1ABA86BB87> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
    0x950a3000 - 0x950a6ff7  libdyld.dylib (239.4) <F4604F64-945B-3871-8F26-E9C55488BC27> /usr/lib/system/libdyld.dylib
    0x950a7000 - 0x950a8fff  libsystem_blocks.dylib (63) <2AC67D5E-ECD4-3644-A53C-9684F9B7AA33> /usr/lib/system/libsystem_blocks.dylib
    0x95146000 - 0x9516efff  libsystem_info.dylib (449.1.3) <BB68E8CC-422F-3121-8C86-D0F766FB696D> /usr/lib/system/libsystem_info.dylib
    0x9516f000 - 0x95177ffe  libGFXShared.dylib (9.6) <D75FE2D7-0CF9-351E-9EE3-893F2B2114BE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x95178000 - 0x953dcff7  com.apple.CoreData (107 - 481.01) <85EE4DFF-3A61-3D3B-A818-524F0A427A4D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9540e000 - 0x9544bffb  libGLImage.dylib (9.6) <EAC640A8-CD71-3AB2-9918-21CACCBCCB0D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9544c000 - 0x954a1fff  libc++.1.dylib (120) <10C0A136-64F9-3CC2-9420-013247032120> /usr/lib/libc++.1.dylib
    0x954a2000 - 0x957c8ffb  com.apple.JavaScriptCore (9537 - 9537.74.4) <1AE99257-8FDA-3A6D-8463-D0BD07D77762> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x957c9000 - 0x9593cffb  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <AAF3AB26-3BAD-3E5F-8192-9805B7AA1CB1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9593d000 - 0x95961ff3  libc++abi.dylib (49.1) <43A04ACF-97A5-35ED-B454-6B5C0CF0F99D> /usr/lib/libc++abi.dylib
    0x95969000 - 0x95a44ff7  com.apple.LaunchServices (572.26 - 572.26) <5915A9AC-7928-30B1-9329-94048ADE81D9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x95a45000 - 0x95a4aff7  com.apple.print.framework.Print (9.0 - 260) <A6C465F6-C5D1-353A-9F33-19B9CEDBBC2A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x95a4b000 - 0x95e7fff7  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <5B12F3E9-84F6-3183-B85D-FD19EF800ADB> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x95f89000 - 0x95f8eff3  libsystem_platform.dylib (24.90.1) <0613F163-9A7A-3908-B30B-AC1627503933> /usr/lib/system/libsystem_platform.dylib
    0x95f8f000 - 0x95fe4ff7  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <0F1C111F-1E64-33BB-A69F-14643B3037D5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x95fe5000 - 0x95ffefff  libAVFAudio.dylib (32.2) <C4CBDFDF-8F77-3872-B7DE-D2D7982084BA> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
    0x96002000 - 0x9610fff7  com.apple.ImageIO.framework (3.3.0 - 1042) <677F8044-E8B4-34A8-B7D9-575D7CEA019E> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x96110000 - 0x9611efff  libxar.1.dylib (202) <B73748D4-F830-3C71-98B3-7A3ABF5136FD> /usr/lib/libxar.1.dylib
    0x9611f000 - 0x961b7ff7  com.apple.Metadata (10.7.0 - 800.23) <6590358F-9677-3257-8780-FF0462852EDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x961b8000 - 0x964b9ffb  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <02C72D54-E3D3-32B0-A081-E85A7038489D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x96de1000 - 0x96e3affa  libTIFF.dylib (1042) <0EED8A3F-A7C6-3FE2-8F67-55813D5E543E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x96e3e000 - 0x96e46fff  libsystem_dnssd.dylib (522.90.2) <A73663C9-CE65-3FF3-B41B-686728BBFB00> /usr/lib/system/libsystem_dnssd.dylib
    0x96e47000 - 0x96e48fff  com.apple.AddressBook.ContactsData (8.0 - 1369) <F973C097-C9A2-3B8D-A33A-A87E4A41E56B> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
    0x96e49000 - 0x96e4afff  libDiagnosticMessagesClient.dylib (100) <B936B1D4-90BB-395D-8EA9-E1237608E7D0> /usr/lib/libDiagnosticMessagesClient.dylib
    0x96e4b000 - 0x96e4cffa  libsystem_sandbox.dylib (278.11) <E8BE1DF7-2F3D-3202-B807-A85C99220AB6> /usr/lib/system/libsystem_sandbox.dylib
    0x96e4d000 - 0x96e8dff7  com.apple.bom (14.0 - 193.1) <FFF1C8E5-41FF-357B-8681-69B21DCED2E4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x983f2000 - 0x9871dffe  com.apple.Foundation (6.9 - 1056.13) <C33A8984-7E97-36BE-B842-EE4FE35F53EA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9871e000 - 0x9899afe7  com.apple.QuickTime (7.7.3 - 2826.17) <E8F7EFCE-41FD-3E30-AAA5-5C232317E9D2> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9899b000 - 0x989e1ff7  libFontRegistry.dylib (127) <A0930DB2-A6C6-3C6E-B4A2-119E0D76FD7D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x989e2000 - 0x989e3ff7  com.apple.diagnosticlogcollection (10.0 - 1000) <B2525E0D-2BB1-3AF6-BDCA-56DCDC1F7DBF> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection
    0x989e4000 - 0x989f3fff  libGL.dylib (9.6) <58C42A46-27D0-3228-B3C1-EC3923D49BAD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x989f4000 - 0x98a5dffa  com.apple.datadetectorscore (5.0 - 354.3) <566882DE-B726-331E-BA89-ACBB3D5BEEC4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x98a5e000 - 0x98a7aff9  com.apple.Ubiquity (1.3 - 289) <1CEDC83D-7282-3B4D-8CF7-4FE045012391> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x98a7b000 - 0x98acefff  com.apple.htmlrendering (77 - 1.1.4) <408FA30F-4FE9-3162-9FFD-677E8569C1EA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x98acf000 - 0x98b24ff7  com.apple.QuickLookFramework (5.0 - 622.7) <215A2C74-801A-39AE-85E4-A1E5031CFD38> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x98b25000 - 0x98b8bffb  com.apple.CoreUtils (2.0 - 200.34.4) <F14AAB3C-1C8A-37D7-85BE-76646F9F6098> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x98b8c000 - 0x98b97fff  com.apple.CrashReporterSupport (10.9 - 538) <7ED18744-8296-3AB8-BBAA-77B0849CF88E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x98b98000 - 0x98c7eff7  com.apple.coreui (2.1 - 231) <1C1AE894-C5C2-3F1C-BF29-B152ECD9BD88> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x98c7f000 - 0x98d04ffc  com.apple.CorePDF (4.0 - 4) <73557F2A-B0EF-3128-90FE-8EDD7824CE73> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x98d05000 - 0x98e5bff0  libBLAS.dylib (1094.5) <74310C2F-4FDB-3995-A01A-5AFB83010A43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x98e5c000 - 0x98eeeff9  libsystem_c.dylib (997.90.3) <80D21D3D-1031-314C-B1F0-0B35B977CEFB> /usr/lib/system/libsystem_c.dylib
    0x98fc0000 - 0x98fd9fff  com.apple.Kerberos (3.0 - 1) <91F17EB2-C70C-359C-B09D-96B52D2A9C9F> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x98fda000 - 0x98fdafff  com.apple.Accelerate (1.9 - Accelerate 1.9) <C85070A7-D942-3CFA-981F-5864480788C8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x98fdb000 - 0x99086ff5  com.apple.imcore (10.0 - 1000) <000D6E8B-1067-3FE1-8524-18A8710C572E> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
    0x99087000 - 0x991b4ff9  com.apple.avfoundation (2.0 - 651.12) <5D46DA01-3CFB-375E-B134-8625EA3466A7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x991b5000 - 0x991bbffb  libunwind.dylib (35.3) <099D1A6F-A1F0-3D05-BF1C-0A7BB32D39C2> /usr/lib/system/libunwind.dylib
    0x991bc000 - 0x991befff  com.apple.securityhi (9.0 - 55005) <4F6A2006-CC82-39D0-AA0F-C448CF3943AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x991e9000 - 0x991f0ff2  com.apple.NetFS (6.0 - 4.0) <915AA303-C02B-3B0C-8208-D8AAA4350DB4> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x991f1000 - 0x9920dfff  libCRFSuite.dylib (34) <FFF76EBA-DF35-3A5F-857F-3F4B1C9F4C77> /usr/lib/libCRFSuite.dylib
    0x9920e000 - 0x9a0a9ff3  com.apple.WebCore (9537 - 9537.74.11) <2D24AE4B-EE47-3DC2-82A1-9EEBD89E2140> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9a196000 - 0x9a22dff7  com.apple.ink.framework (10.9 - 207) <EF00BCCB-B270-3F3D-9424-EF5F4BC23E25> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9a22e000 - 0x9a235ff7  com.apple.XPCService (2.0 - 1) <94783930-9E46-394F-B1B2-9CA57CBA2D25> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x9a236000 - 0x9a3fcffb  libicucore.A.dylib (511.31) <9C25D145-E785-357B-9833-1980A1A738C9> /usr/lib/libicucore.A.dylib
    0x9a42d000 - 0x9a498ff9  com.apple.Heimdal (4.0 - 2.0) <D26F2F4D-5FD4-3FBF-A28C-1E8215C5ACA1> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x9a49c000 - 0x9a4bcfff  com.apple.facetimeservices (10.0 - 1000) <D3A59518-0F74-3B3F-8BFE-447D75E9F3F1> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
    0x9a4bd000 - 0x9a4c1fff  libheimdal-asn1.dylib (323.15) <2C5FF5E6-F253-387E-959A-B1926DD99B31> /usr/lib/libheimdal-asn1.dylib
    0x9a4c2000 - 0x9a4edff5  com.apple.ChunkingLibrary (2.0 - 155.1) <50BBBBF8-F30B-39EA-A512-11A47F429F2C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x9a4ee000 - 0x9a4f0fff  libquarantine.dylib (71) <EE3B510E-1AEC-3171-8A1A-D6A5A42CF35C> /usr/lib/system/libquarantine.dylib
    0x9a4f1000 - 0x9a4f9fff  liblaunch.dylib (842.90.1) <B259692D-D60B-3BCE-9E03-32F457CB5046> /usr/lib/system/liblaunch.dylib
    0x9a4fa000 - 0x9a66afff  com.apple.QTKit (7.7.3 - 2826.17) <962F9FB1-7E46-3F93-9BAF-E05E7CF8D36D> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9a670000 - 0x9a69cff7  com.apple.DictionaryServices (1.2 - 208) <33873336-BECD-3F62-A315-C45F24C1818C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9a69d000 - 0x9a6a2fff  com.apple.MediaAccessibility (1.0 - 43) <1CC2B661-146A-3FF3-B843-508F611F7B4B> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
    0x9a6a3000 - 0x9a771ff7  com.apple.backup.framework (1.5.2 - 1.5.2) <BE2F37D3-F610-30EE-B106-44B5DAE35603> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9a772000 - 0x9a77cff2  com.apple.AppSandbox (3.0 - 1) <FE0793BE-50CF-3E3B-82C9-71F7A294E10F> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x9a77d000 - 0x9a786fff  libsystem_notify.dylib (121) <623269F5-1518-3035-A916-8AF83C972154> /usr/lib/system/libsystem_notify.dylib
    0x9a787000 - 0x9a7b2ff7  libsystem_network.dylib (241.3) <71EBA489-386D-3608-ADE6-CB50EBD1AB1B> /usr/lib/system/libsystem_network.dylib
    0x9a7b3000 - 0x9a7beff6  com.apple.NetAuth (5.0 - 5.0) <3B2E9615-EE12-38FC-BDCF-09529FF9464B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x9a7bf000 - 0x9a7c9fff  com.apple.bsd.ServiceManagement (2.0 - 2.0) <B84F3916-236A-347B-9C1F-3DE571496737> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x9a7ca000 - 0x9a7daff5  com.apple.LangAnalysis (1.7.0 - 1.7.0) <71DE7754-0A47-3F35-B1BF-B1FE7E1311E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9a7db000 - 0x9a7f0ff3  com.apple.AppContainer (3.0 - 1) <017FED4F-AD6E-3A56-806B-A2D33E69EFF9> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x9a7f1000 - 0x9a7fbff3  com.apple.DisplayServicesFW (2.8 - 360.8.14) <B14B15EC-41BA-37F6-B696-8BBA0E325C0C> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9a7fc000 - 0x9a834fff  com.apple.LDAPFramework (2.4.28 - 194.5) <4399D209-B119-3ACC-97AF-F2E14DD207CB> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9a839000 - 0x9a9e5fff  com.apple.QuartzCore (1.8 - 332.3) <00167BF7-E3C4-3AA7-8DA0-466BD4175350> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9a9e6000 - 0x9ac54ff6  com.apple.security (7.0 - 55471.14) <7915499B-66CF-39FE-B53C-A11C7775314D> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9ac55000 - 0x9ac59ffa  libcache.dylib (62) <9730D7F2-D226-3F30-8D26-BF598CB781F6> /usr/lib/system/libcache.dylib
    0x9ac5a000 - 0x9ac72fff  com.apple.CFOpenDirectory (10.9 - 173.90.1) <13B70F7C-9A4D-3CCA-AEB8-3958F5B6167E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x9ac73000 - 0x9ac9dfff  libxslt.1.dylib (13) <249D54AB-1D82-38FE-ABEC-0D575450C73B> /usr/lib/libxslt.1.dylib
    0x9ac9e000 - 0x9add5fff  com.apple.desktopservices (1.8.2 - 1.8.2) <CCE6EB2B-1799-349A-8F13-003077CDFF31> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9add6000 - 0x9add9ff9  com.apple.TCC (1.0 - 1) <A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x9adda000 - 0x9ae0cffb  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <30CF0E7B-3511-318F-AC31-06C29EDC111E> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x9ae0d000 - 0x9ae16ffa  com.apple.CommonAuth (4.0 - 2.0) <7E72F700-6072-3822-8AAF-F14D456F7E7D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x9ae17000 - 0x9ae68ff1  libstdc++.6.dylib (60) <354F284B-2343-3810-9CA2-E28038824F6E> /usr/lib/libstdc++.6.dylib
    0x9ae69000 - 0x9ae71fff  libcopyfile.dylib (103) <1B1484BD-08B6-3BA9-94CA-A7C24B610EB3> /usr/lib/system/libcopyfile.dylib
    0x9ae72000 - 0x9aed8ff4  com.apple.ISSupport (1.9.9 - 57) <BF22E11E-56CB-3396-A109-8C75694DDE7F> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9aed9000 - 0x9aed9fff  com.apple.Cocoa (6.8 - 20) <407DC9E6-BBCE-3D34-9BBB-00C90584FFDF> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9aeda000 - 0x9aef4ff7  com.apple.GenerationalStorage (2.0 - 160.2) <8755F7F1-2402-387C-A32A-2270E7D680C8> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x9aef5000 - 0x9aefefff  com.apple.DiskArbitration (2.6 - 2.6) <92F7575A-AA20-34D9-BB26-2CC8C3CCAFEB> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9aeff000 - 0x9af01ffe  libCVMSPluginSupport.dylib (9.6) <DF20981B-DAD0-3125-8089-C96CB3226888> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x9b2fa000 - 0x9bf18ff3  com.apple.AppKit (6.9 - 1265.19) <07125263-9E97-3A47-BBD3-6FB462910565> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9bf19000 - 0x9bf77fff  com.apple.ViewBridge (1.0 - 46.2) <64AC1689-5F60-3E16-AE62-A2259E0D57EC> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x9bf78000 - 0x9bf7bff3  com.apple.AppleSystemInfo (3.0 - 3.0) <4586B503-A0A8-3654-AA48-D2F9FA0188CB> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x9bf7c000 - 0x9bfa3fff  com.apple.CoreVideo (1.8 - 117.2) <A53FDD90-F200-3F7C-8A8E-5DE36D3DFBB0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9bfa4000 - 0x9bfd4ff3  libtidy.A.dylib (15.12) <3DBE95FE-8FA7-3584-9202-E37B54B3B064> /usr/lib/libtidy.A.dylib
    0x9c07f000 - 0x9c0a9ff7  libsandbox.1.dylib (278.11) <EB4CD5DF-EEDA-3785-9DD5-90FD423591FD> /usr/lib/libsandbox.1.dylib
    0x9c0aa000 - 0x9c0c2ffd  libdispatch.dylib (339.90.1) <871AC354-D1B6-3475-889E-AF594448CF43> /usr/lib/system/libdispatch.dylib
    0x9c0c3000 - 0x9c342ff7  com.apple.imageKit (2.5 - 774) <53C3FA27-3830-3A15-9707-AF7369119866> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9c343000 - 0x9c394ffb  com.apple.CoreMedia (1.0 - 1273.49) <26F891C5-DF9F-3A2C-995A-827595F03CF2> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    Model: MacBookPro9,2, BootROM MBP91.00D3.B09, 2 processors, Intel Core i5, 2.5 GHz, 4 GB, SMC 2.2f44
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 1024 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3230554638424455302D474E2D4620
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3230554638424455302D474E2D4620
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.3f10 13477, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE HDD TOSHIBA MK5065GSXF, 500.11 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS31N
    USB Device: Hub
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: Hub
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: IR Receiver
    Thunderbolt Bus: MacBook Pro, Apple Inc., 25.1

    If you can open it in TextEdit and paste a screenshot of some of it here, we might be able to figure it out.  If it looks like gibbersish, not values separated by commas, that would be the problem.  I believe there are some posts on this subject not to far back in the past; something about "csv" files that turned out not to be csv files.  Or maybe I'm remembering wrong.

  • Problem export pdf table to excel spreadsheed

    Hi, my name is Marco.
    Last month a customer has bought a copy of Adobe Acrobat Professional 9 in my computer shop for edit some pdfs files.
    After some days he told me that he need to export a table to excel's spreadsheet but the function "open table in excel spreadsheet" work ONLY for the page where i right-click. How can i copy all the document in excel (without lose the format)?
    Sorry for the bad english, if you don't understand i try to rewrite it better or in Italian!
    Thank you!

    A lot depends on the structure of the PDF. I it has tags included that provide the format information, then the conversion may be easy. If the tags are not included, then retaining the format is almost impossible. This may even be a problem with recognizing columns. In that case, selecting columns with the ctrl key held during the selection. More information is available under "Copying Text" in the help menu (complete help). The help also talks about the ability to retain format as I have suggested.
    To select items on multiple pages, you have to use continuous view.
    It might be easier to the Save As to DOC and go from there. The backward conversion is not the forte or intent of Acrobat. In reality, one should never delete the original XLS (or other) file with the intent of going back in the future. Sounds like it is too late for your customer.

Maybe you are looking for

  • Lost music on ipod because "playlists selected for updating no longer exist

    Not sure what I've done. I recently downloaded newer version of itunes. Then when synching, I had too much music in my library for the ipod to handle so it told me about doing the smart playlist. I erased a couple of playlists on the itunes menu I no

  • "Load Report Failed" Error after upgrading to CR XI R2 and VS 2005

    Previously I had visual studio 2003 and crystal report XI and on my website project and I have this function where users can download their monthly statement. and it was working fine. here is my code of the function... Private Sub cmdStatement_Click(

  • Error in the dbms_xmlgen.getxmltype query

    Following query is used to search particular string in the whole database and returns the table and column name which contains that string ...Most of the time it gives the correct results but sometime it give the error as follows.Anyone please expali

  • 2 layout questions...

    2 problems with this page: http://www.jamesdixonministries.org/home/default2.asp 1: My menu needs to be centered. It is the only item on the page using layers. How would i go about making sure its centered no matter any browser size? 2: My menu has d

  • Best Method for Destroying Data on the Drive Before it Goes Back to Apple

    As the subject suggests....any ideas....i'd like to 'shred' the whole drive and clean install without any personal info on it.