Load Picture in Word using OLE2

Load picture using OLE2
Hello All,
I am trying to create a word Doc using OLE2 from Forms. The DOC contains a picture and I will be passing the filename of the picture to WORD. How do I do this using OLE2 ?.
(I am somewhat able to do the same thru Mail Merge but I dont want to go in that route)
Thanks.

Not to worry. I have found a way to do this by bookmark/VB Macro.
Thanks

Similar Messages

  • Download alv-table to MS-Word using OLE2

    Hello,
    I need to download an internal table like ALV to MS-Word using OLE2.
    thank you 4 ur help.
    I fund this Report, but here i just can write a text in word but I can not show/write a Table.
    http://wiki.sdn.sap.com/wiki/display/Snippets/SampleprogramtocreateaWorddocumentfromABAP%28usingOLE%29
    CALL METHOD OF v_objselection 'TypeText'
      EXPORTING #1 = 'Olé World!'.
    when i wrote a table 4 Exmpel lt_outab insteat of 'Ole World' I got a trouble during compling because lt_outab is not a CHAR:-(

    I recommend reading this article:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/204d1bb8-489d-2910-d0b5-cdddb3227820
    You will get all the information you need to do with OLE2 Automation.
    It is also useful to dig into VB a little bit.
    In the article on page 7 you have a sample code which shows how to do with tables. You need to loop in ABAP on the internal table and inside this loop you need to loop on fields. Use VB methods ADD and CELL.
    FIELD-SYMBOLS: <wrk> LIKE LINE OF itab, <field> TYPE ANY.
    CALL METHOD OF word 'Add' = table
      EXPORTING
        #1 = range_table
        #2 = lines                            "lines( itab )
        #3 = fields.                          "number of fields
    LOOP AT itab ASSIGNING <wrk>.
      l_index = sy-tabix.
      DO.
        ASSIGN COMPONENT sy-index OF STRUCTURE <wrk> TO <field>.
        IF sy-subrc NE 0.
          EXIT.
        ENDIF.
        CALL METHOD OF word 'Cell' = cell
          EXPORTING
            #1 = l_index
            #2 = sy-index.
        GET PROPERTY OF cell 'Range' = range
        SET PROPERTY OF range 'Text' = <field>.
      ENDDO.
    ENDLOOP.
    Regards
    Edited by: Krzysztof Usowicz on Sep 15, 2010 9:45 AM

  • Problem entering values in table after creating it in Word using OLE2

    Hi,
    I want to create a Word document from a Oracle Forms 6i application. The document will have standard text followed by a table. The cells of this table are to be populated from fields in the Forms application.
    I have created a sample code below. When executed from within the Forms application, it creates a document fine. It writes the text "Hello World". It then creates a table as expected. But when I try to enter a value "Cell Value" in the table, the value does not get written to the cell of the table. Instead it writes the value outside the table.
    Can someone please tell me what I am doing wrong here and what I need to do so that after writing the text on the document I can write values into the table also.
    Any help will be much appreciated.
    Here is the code(it works but then it doesn't ):
    PROCEDURE TEST_PROC IS
    hApplication OLE2.OBJ_TYPE;
    hDocuments OLE2.OBJ_TYPE;
    hDocument OLE2.OBJ_TYPE;
    hSelection OLE2.OBJ_TYPE;
    hParagraphFormat OLE2.OBJ_TYPE;
    hRange OLE2.OBJ_TYPE;
    hFont OLE2.OBJ_TYPE;
    hTables OLE2.OBJ_TYPE;
    hTable OLE2.OBJ_TYPE;
    args OLE2.LIST_TYPE;
    wdAlignParagraphLeft CONSTANT number(3) := 0; --Default
    wdword9tablebehavior CONSTANT NUMBER (5) := 1;
    wdautofitfixed CONSTANT NUMBER (5) := 0;
    ---- wdUnits Class members
    wdcharacter CONSTANT NUMBER (5) := 1;
    wdmove CONSTANT NUMBER (5) := 0; --Default
    --wdBorderType Class members
    wdborderleft CONSTANT NUMBER := -2;
    wdborderright CONSTANT NUMBER := -4;
    wdbordertop CONSTANT NUMBER := -1;
    wdborderbottom CONSTANT NUMBER := -3;
    --WdLineStyle Class member
    wdlinestylenone CONSTANT NUMBER := 0;
    BEGIN
    hApplication:=OLE2.CREATE_OBJ('Word.Application');
    OLE2.SET_PROPERTY(hApplication, 'Visible', 1);
    hDocuments := OLE2.GET_OBJ_PROPERTY(hApplication, 'Documents');
    hDocument := OLE2.INVOKE_OBJ(hDocuments, 'Add');
    hSelection := OLE2.GET_OBJ_PROPERTY(hApplication, 'Selection');
    hFont := OLE2.GET_OBJ_PROPERTY(hSelection, 'Font');
    OLE2.SET_PROPERTY(hFont, 'Name', 'Calibri');
    OLE2.SET_PROPERTY(hFont, 'Size', 11);
    OLE2.SET_PROPERTY(hFont, 'Bold', FALSE );
    OLE2.INVOKE(hSelection, 'TypeParagraph');
    hParagraphFormat := OLE2.GET_OBJ_PROPERTY(hSelection, 'ParagraphFormat');
    OLE2.SET_PROPERTY(hParagraphFormat, 'Alignment', wdAlignParagraphLeft);
    OLE2.RELEASE_OBJ(hParagraphFormat);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'Hello World');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.INVOKE(hSelection, 'TypeParagraph');
    htables := ole2.get_obj_property (hdocument, 'Tables');
    hrange := ole2.get_obj_property (hselection, 'Range');
    args := ole2.create_arglist;
    ole2.add_arg_obj (args, hrange); --Range
    ole2.add_arg (args, 1); --NumRows
    ole2.add_arg (args, 6); --NumColumns
    ole2.add_arg (args, wdword9tablebehavior); --DefaultTableBehavior
    ole2.add_arg (args, wdautofitfixed); --FitBehavior
    htable := ole2.invoke_obj (htables
    ,'Add'
    ,args
    args := ole2.create_arglist;
    ole2.add_arg (args, wdcharacter);
    ole2.add_arg (args, 1);
    ole2.add_arg (args, wdmove);
    ole2.invoke (hselection
    ,'MoveLeft'
    ,args
    ole2.destroy_arglist (args);
    args := ole2.create_arglist;
    ole2.add_arg (args, 'CellValue');
    ole2.invoke (hselection
    ,'TypeText'
    ,args
    ole2.destroy_arglist (args);
    ole2.RELEASE_OBJ (happlication);
    ole2.RELEASE_OBJ (hdocuments);
    ole2.RELEASE_OBJ (hdocument);
    ole2.RELEASE_OBJ (hfont);
    ole2.RELEASE_OBJ (hparagraphformat);
    ole2.RELEASE_OBJ (htables);
    ole2.RELEASE_OBJ (hrange);
    END;

    Once again thanks for the help John. Unfortunately I cannot use only bookmarks, because the text to be entered from the application is of undetermined length and therefore since the possibility of wrapping exists, it would not be able to give me the same formatting abilty as using a table.
    However, the good news is that I have been able to find the solution. I am posting my code here so that it is available to anyone else who might have the same issue. Thanks again.
    Here is my code and my comments in it explain what it does.
    PROCEDURE extract_to_word
    IS
    /* First of all I would like to acknowledge the help I have got from experts who have posted a lot of this code on the web which I have used here. Special thanks go to someone by the name of sfvb
    found here http://www.tek-tips.com/userinfo.cfm?member=sfvbsfvb
    This procedure does the following:
    1. Opens a word document.
    2. Creates a header and pastes a picture in the header e.g your company logo with address. Please note that the image should have both the address and the logo in it. It can be created using paint where you can write your address at one end and paste a bmp or jpg picture of your logo at the other end.
    3. Writes text with specified font and size. It calls a separate procedure PRINT_LINE to do this.
    4. Creates a table on the document with specified number of columns with fixed width.
    5. Populates the cells of the table-
    first with headers written by calls to WRITE_HEADINGS procedure.
    next with data from a block of the Forms application by calls to WRITE_DATA procedure
    6. Comes out of the table and continues to write text.
    The three procedures that are repeatedly called are described after the end of this procedure.
    Note: While I have made every attempt to ensure that the code does not generate error on account of my writing the explanatory notes, I cannot be sure of having made some typos. If the code does not compile, it is most probably be on account of something I have missed in entering the comments and explanation.
    Disclaimer:
    I am not the sole author of this code. I have taken help from other open sources and copyright infringement if any is entirely unintentional.
    happlication ole2.obj_type;
    hwindow ole2.obj_type;
    hpane ole2.obj_type;
    hview ole2.obj_type;
    hdocuments ole2.obj_type;
    hdocument ole2.obj_type;
    hselection ole2.obj_type;
    hparagraphformat ole2.obj_type;
    hrange ole2.obj_type;
    hfields ole2.obj_type;
    hfont ole2.obj_type;
    hinlineshapes ole2.obj_type;
    hpars ole2.obj_type;
    hpar ole2.obj_type;
    htabstops ole2.obj_type;
    hactivedocument ole2.obj_type;
    htables ole2.obj_type;
    htable ole2.obj_type;
    hcolumns ole2.obj_type;
    hcells ole2.obj_type;
    hrows ole2.obj_type;
    hshading ole2.obj_type;
    hinsertrow ole2.obj_type;
    hborders ole2.obj_type;
    hshading ole2.obj_type;
    args ole2.list_type;
    wdalignparagraphleft CONSTANT NUMBER (3) := 0;
    wdalignparagraphcenter CONSTANT NUMBER (3) := 1;
    wdalignparagraphright CONSTANT NUMBER (3) := 2;
    wdseekcurrentpageheader CONSTANT NUMBER (3) := 9;
    wdseekcurrentpagefooter CONSTANT NUMBER (3) := 10;
    wdseekmaindocument CONSTANT NUMBER (3) := 0;
    wdfieldpage CONSTANT NUMBER (3) := 33;
    wdfieldnumpages CONSTANT NUMBER (3) := 26;
    wdpagebreak CONSTANT NUMBER (3) := 7;
    wdstory CONSTANT NUMBER (3) := 6;
    wdword CONSTANT NUMBER (5) := 2;
    wdsentence CONSTANT NUMBER (5) := 3;
    wdword8tablebehavior CONSTANT NUMBER (5) := 0;
    wdword9tablebehavior CONSTANT NUMBER (5) := 1;
    wdautofitcontent CONSTANT NUMBER (5) := 1;
    wdautofitfixed CONSTANT NUMBER (5) := 0;
    wdautofitwindow CONSTANT NUMBER (5) := 2;
    wdunderlinesingle CONSTANT NUMBER (5) := 1;
    ---- wdUnits Class members
    wdcell CONSTANT NUMBER (5) := 12;
    wdcharacter CONSTANT NUMBER (5) := 1;
    wdword CONSTANT NUMBER (5) := 2;
    wdsentence CONSTANT NUMBER (5) := 3;
    wdline CONSTANT NUMBER (5) := 5;
    ---- wdMovementType Class members
    wdextend CONSTANT NUMBER (5) := 1;
    wdmove CONSTANT NUMBER (5) := 0;
    --wdBorderType Class members
    wdborderleft CONSTANT NUMBER := -2;
    wdborderright CONSTANT NUMBER := -4;
    wdbordertop CONSTANT NUMBER := -1;
    wdborderbottom CONSTANT NUMBER := -3;
    --WdLineStyle Class member
    wdlinestylenone CONSTANT NUMBER := 0;
    mytab CONSTANT VARCHAR2 (1) := CHR (9);
    myblue CONSTANT NUMBER (8) := 16711680; --FF0000
    mygreen CONSTANT NUMBER (8) := 65280; --00FF00
    myred CONSTANT NUMBER (8) := 255; --0000FF
    mydkgreen CONSTANT NUMBER (8) := 32768; --008000
    myblack CONSTANT NUMBER (8) := 0; --000000
    mytext VARCHAR2 (2000);
    BEGIN
    happlication := ole2.create_obj ('Word.Application');
    ole2.set_property (happlication
    ,'Visible'
    ,1
    hdocuments :=
    ole2.get_obj_property (happlication, 'Documents');
    hdocument := ole2.invoke_obj (hdocuments, 'Add');
    -------- Create Header and Footer --------
    hwindow :=
    ole2.get_obj_property (happlication, 'ActiveWindow');
    hpane := ole2.get_obj_property (hwindow, 'ActivePane');
    hview := ole2.get_obj_property (hpane, 'View');
    ---- Header Section ---
    ole2.set_property (hview
    ,'SeekView'
    ,wdseekcurrentpageheader
    hselection :=
    ole2.get_obj_property (happlication, 'Selection');
    hfont := ole2.get_obj_property (hselection, 'Font');
    ole2.set_property (hfont
    ,'Name'
    ,'Calibri'
    ole2.set_property (hfont
    ,'Size'
    ,10
    ole2.set_property (hfont
    ,'Bold'
    ,FALSE
    ole2.set_property (hfont
    ,'Color'
    ,myblack
    ole2.RELEASE_OBJ (hfont);
    args := ole2.create_arglist;
    --Below is the location of your jpg file that contains the logo and address
    ole2.add_arg (args, 'C:\temp\AMHeader2.jpg');
    hinlineshapes :=
    ole2.get_obj_property (hselection, 'InlineShapes');
    ole2.invoke (hinlineshapes
    ,'AddPicture'
    ,args
    ole2.destroy_arglist (args);
    ole2.RELEASE_OBJ (hinlineshapes);
    ole2.set_property (hview
    ,'SeekView'
    ,wdseekmaindocument
    ole2.RELEASE_OBJ (hview);
    ole2.RELEASE_OBJ (hpane);
    ole2.RELEASE_OBJ (hwindow);
    -------- Insert Text --------
    hfont := ole2.get_obj_property (hselection, 'Font');
    ole2.set_property (hfont
    ,'Name'
    ,'Calibri'
    ole2.set_property (hfont
    ,'Size'
    ,9
    ole2.set_property (hfont
    ,'Bold'
    ,FALSE
    ole2.set_property (hfont
    ,'Color'
    ,myblack
    ole2.invoke (hselection, 'TypeParagraph');
    hparagraphformat :=
    ole2.get_obj_property (hselection, 'ParagraphFormat');
    ole2.set_property (hparagraphformat
    ,'Alignment'
    ,wdalignparagraphleft
    ole2.RELEASE_OBJ (hparagraphformat);
    print_line (hselection
    , 'Date ' || TO_CHAR (TRUNC (SYSDATE), 'MM/DD/YYYY')
    ,NULL
    print_line (hselection
    ,NULL
    --The following prints the address of the recipient of the letter.
    print_line (hselection
    ,addr_line1
    ,NULL
    print_line (hselection
    ,addr_line2
    ,NULL
    print_line (hselection
    ,addr_line3
    ,NULL
    print_line (hselection
    ,addr_line4
    ,NULL
    print_line (hselection
    ,addr_line5
    ,NULL
    --Call like the one below are to insert blank lines
    hselection :=
    ole2.get_obj_property (happlication, 'Selection');
    print_line (hselection
    ,NULL
    ,NULL
    print_line (hselection
    ,'Your salutation'
    ,NULL
    print_line (hselection
    ,NULL
    ,'NULL
    print_line (hselection
    ,'Ref: '
    ,NULL
    print_line (hselection
    ,NULL
    ,NULL
    print_line
    (hselection
    ,'Whatever text you want to appear on this line.'
    ,NULL
    print_line (hselection
    ,NULL
    ,NULL
    -------- Create Table --------
    htables := ole2.get_obj_property (hdocument, 'Tables');
    hrange := ole2.get_obj_property (hselection, 'Range');
    args := ole2.create_arglist;
    ole2.add_arg_obj (args, hrange); --Range 
    ole2.add_arg (args, 1); --NumRows    The rest of the rows are created later as and when required
    ole2.add_arg (args, 6); --NumColumns This creates a table of 6 columns.
    ole2.add_arg (args, wdword9tablebehavior); --DefaultTableBehavior
    ole2.add_arg (args, wdautofitfixed); --FitBehavior
    htable := ole2.invoke_obj (htables
    ,'Add'
    ,args
    ole2.destroy_arglist (args);
    -- [Borders removal start]The following piece of code removes all the borders. Use of this is optional.
    hborders := ole2.get_obj_property (htable, 'Borders');          
    ole2.set_property (hborders                                        
    ,'OutsideLineStyle'
    ,wdlinestylenone
    ole2.set_property (hborders
    ,'InsideLineStyle'
    ,wdlinestylenone
    ole2.RELEASE_OBJ (hborders);
    --[Borders removal end]
    --The following code makes the cursor enter the table. I took quite some time
    --figuring this out.
    hselection := ole2.get_obj_property (hdocument, 'Tables');
    hselection := ole2.get_obj_property (happlication, 'Selection');
    --WRITE_HEADINGS is the procedure called each time only to write headings.
    write_headings (hselection
    ,'Heading 1 on cell at row 1 column 1'
    ,8
    --The following moves the cursor to the next cell on the right.
    args := ole2.create_arglist;
    ole2.add_arg (args, wdcell);
    ole2.add_arg (args, 1);
    ole2.add_arg (args, wdmove);
    ole2.invoke (hselection
    ,'MoveRight'
    ,args
    ole2.destroy_arglist (args);
    write_headings (hselection
    ,'Heading 1 on cell at row 1 column 2'
    ,7
    args := ole2.create_arglist;
    ole2.add_arg (args, wdcell);
    ole2.add_arg (args, 1);
    ole2.add_arg (args, wdmove);
    ole2.invoke (hselection
    ,'MoveRight'
    ,args
    ole2.destroy_arglist (args);
    write_headings (hselection
    ,'Heading 1 on cell at row 1 column 3'
    ,7
    args := ole2.create_arglist;
    ole2.add_arg (args, wdcell);
    ole2.add_arg (args, 1);
    ole2.add_arg (args, wdmove);
    ole2.invoke (hselection
    ,'MoveRight'
    ,args
    ole2.destroy_arglist (args);
    write_headings (hselection
    ,'Heading 1 on cell at row 1 column 4'
    ,8
    args := ole2.create_arglist;
    ole2.add_arg (args, wdcell);
    ole2.add_arg (args, 1);
    ole2.add_arg (args, wdmove);
    ole2.invoke (hselection
    ,'MoveRight'
    ,args
    ole2.destroy_arglist (args);
    write_headings (hselection
    ,'Heading 1 on cell at row 1 column 5'
    ,5
    args := ole2.create_arglist;
    ole2.add_arg (args, wdcell);
    ole2.add_arg (args, 1);
    ole2.add_arg (args, wdmove);
    ole2.invoke (hselection
    ,'MoveRight'
    ,args
    ole2.destroy_arglist (args);
    write_headings (hselection
    ,'Heading 1 on cell at row 1 column 6'
    ,8
    --The following moves the cursor back to the first cell on row 1 column 1
    args := ole2.create_arglist;
    ole2.add_arg (args, wdcell);
    ole2.add_arg (args, 6);
    ole2.add_arg (args, wdmove);
    ole2.invoke (hselection
    ,'MoveLeft'
    ,args
    ole2.destroy_arglist (args);
    --Now we need to write data sourced from a multi record block in Oracle Forms
    GO_BLOCK ('your_block');
    FIRST_RECORD;
    record_cnt := 0;
    LOOP
    record_cnt := record_cnt + 1;
    ---In my application I gave the choice to the user to put a check mark on those records that he would want to print ------on the document and so the following.
    IF :your_block.cb_print = 'Y'          
    THEN               
    --This creates a new row below the first row that contains the column headers.
    args := ole2.create_arglist; ole2.add_arg (args, 1);
    ole2.invoke (hselection
    ,'InsertRowsBelow'
    ,args
    ole2.destroy_arglist (args);
    --WRITE_DATA is called each time to write the data in the cells.
    write_data (hselection
    , :your_block.item);
    args := ole2.create_arglist;
    ole2.add_arg (args, wdcell);
    ole2.add_arg (args, 1);
    ole2.add_arg (args, wdmove);
    ole2.invoke (hselection
    ,'MoveRight'
    ,args
    ole2.destroy_arglist (args);
    write_data (hselection
                   , :your_block.item);
    args := ole2.create_arglist;
    ole2.add_arg (args, wdcell);
    ole2.add_arg (args, 1);
    ole2.add_arg (args, wdmove);
    ole2.invoke (hselection
    ,'MoveRight'
    ,args
    ole2.destroy_arglist (args);
    write_data (hselection
                   ,:your_block.item);
    args := ole2.create_arglist;
    ole2.add_arg (args, wdcell);
    ole2.add_arg (args, 1);
    ole2.add_arg (args, wdmove);
    ole2.invoke (hselection
    ,'MoveRight'
    ,args
    ole2.destroy_arglist (args);
    write_data (hselection
         ,:your_block.item);
    args := ole2.create_arglist;
    ole2.add_arg (args, wdcell);
    ole2.add_arg (args, 1);
    ole2.add_arg (args, wdmove);
    ole2.invoke (hselection
    ,'MoveRight'
    ,args
    ole2.destroy_arglist (args);
    write_data (hselection
         ,:your_block.item);
    args := ole2.create_arglist;
    ole2.add_arg (args, wdcell);
    ole2.add_arg (args, 1);
    ole2.add_arg (args, wdmove);
    ole2.invoke (hselection
    ,'MoveRight'
    ,args
    ole2.destroy_arglist (args);
    write_data (hselection
    ,:your_block.item);
    END IF;
    EXIT WHEN :SYSTEM.LAST_RECORD = 'TRUE';
    NEXT_RECORD;
    END LOOP;
    --The following makes the cursor exit the table and back on document for any further
    --writing of text.
    args := ole2.create_arglist;
    ole2.add_arg (args, wdline);
    ole2.add_arg (args, 1);
    ole2.add_arg (args, wdmove);
    ole2.invoke (hselection
    ,'MoveDown'
    ,args
    print_line (hselection           --As mentioned earlier, this enters a blank line.
    ,NULL
    ,NULL
    print_line (hselection
    ,'Boilerplate text: '
    ,your_variable
    print_line (hselection
    ,'Boilerplate text: '
    ,your_variable
    --You can print as many lines as required by making call to the PRINT_LINE procedure.
    ole2.RELEASE_OBJ (htables);
    ole2.RELEASE_OBJ (hfont);
    ole2.RELEASE_OBJ (hselection);
    ole2.RELEASE_OBJ (hdocument);
    ole2.RELEASE_OBJ (hdocuments);
    ole2.RELEASE_OBJ (happlication);
    END;
    PROCEDURE PRINT_LINE
    ( v_sel OLE2.OBJ_TYPE
    , v_text VARCHAR2
    , v_field varchar2)
    IS
    /* This procedure takes in three arguments.
    The first v_sel is the VB selection object.
    v_text is the static or boilerplate text that needs to be printed on the document.
    v_field is the value of the item or variable from the program.
    v_args      OLE2.LIST_TYPE;
    hTab     CONSTANT varchar2(1) := chr(9); --This is the vb constant for tabstop
    BEGIN
    v_args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(v_args, v_text);
    OLE2.INVOKE(v_sel, 'TypeText', v_args);
    OLE2.DESTROY_ARGLIST(v_args);
    --The following replicates tabbing. This was used so that the field values are aligned at a tabstop.
    --When printing a blank line NULL is passed in as the argument
    v_args := OLE2.CREATE_ARGLIST;
         OLE2.ADD_ARG(v_args, hTab);
         OLE2.INVOKE(v_sel, 'TypeText', v_args);
         OLE2.DESTROY_ARGLIST(v_args);
    --The following writes the value of the variable at the tabstop.      
         v_args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(v_args, v_field);
    OLE2.INVOKE(v_sel, 'TypeText', v_args);
    OLE2.DESTROY_ARGLIST(v_args);
    OLE2.INVOKE(v_sel, 'TypeParagraph');
    END;
    PROCEDURE WRITE_HEADINGS (SELIN OLE2.OBJ_TYPE, TEXTIN VARCHAR2, COUNTIN NUMBER)
    IS
    /* This procedure is used to write headings in the first row of the table.
    SELIN is the Selection object
    TEXTIN is the boilerplate text to be written as the header of a column.
    COUNTIN is the number of characters in the header text. This is required
    to replicate the action bolding the font of the header.
    hFont          OLE2.OBJ_TYPE;
    v_args OLE2.LIST_TYPE;
    wdCharacter CONSTANT number(5) := 1; --Default
    --wdUnderline Class members
    wdUnderlineSingle                     CONSTANT NUMBER(5) := 1;
    ---- wdMovementType Class members
    wdExtend CONSTANT number(5) := 1;
    wdMove CONSTANT number(5) := 0; --Default
    ---- WdParagraphAlignment Class members
    wdAlignParagraphCenter CONSTANT number(5) := 1;
    wdAlignParagraphLeft CONSTANT number(5) := 0;
    wdAlignParagraphRight CONSTANT number(5) := 2;
    ---- HexColor = BBGGRR
    myLightBlue CONSTANT number(8) := 16755370; --FFAAAA
    BEGIN
    hFont := OLE2.GET_OBJ_PROPERTY(selin, 'Font');
    OLE2.SET_PROPERTY(hFont, 'Name', 'Calibri');
    OLE2.SET_PROPERTY(hFont, 'Size', 10);
    OLE2.SET_PROPERTY(hFont, 'Bold', True);
    OLE2.RELEASE_OBJ(hFont);
    v_args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(v_args, textin);
    OLE2.INVOKE(selin, 'TypeText', v_args);
    OLE2.DESTROY_ARGLIST(v_args);
    v_args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(v_args, wdCharacter);
    OLE2.ADD_ARG(v_args, countin);
    OLE2.ADD_ARG(v_args, wdMove);
    OLE2.INVOKE(selin, 'MoveLeft', v_args);
    OLE2.DESTROY_ARGLIST(v_args);
    v_args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(v_args, wdCharacter); --Unit
    OLE2.ADD_ARG(v_args, countin); --Count
    OLE2.ADD_ARG(v_args, wdExtend); --Extend
    OLE2.INVOKE(selin, 'MoveRight', v_args);
    OLE2.DESTROY_ARGLIST(v_args);
    hFont := OLE2.GET_OBJ_PROPERTY(selin, 'Font');
    OLE2.SET_PROPERTY(hFont, 'Underline', wdUnderlineSingle);
    OLE2.RELEASE_OBJ(hFont);
    END;
    PROCEDURE WRITE_DATA (SELIN OLE2.OBJ_TYPE, TEXTIN VARCHAR2)
    IS
    /*This procedure writes data in the cells of the table
    hFont     OLE2.OBJ_TYPE;
    v_args OLE2.LIST_TYPE;
    wdCharacter CONSTANT number(5) := 1; --Default
    --wdUnderline Class members
    wdUnderlineSingle                     CONSTANT NUMBER(5) := 0;
    ---- wdMovementType Class members
    wdExtend CONSTANT number(5) := 1;
    wdMove CONSTANT number(5) := 0; --Default
    ---- WdParagraphAlignment Class members
    wdAlignParagraphCenter CONSTANT number(5) := 1;
    wdAlignParagraphLeft CONSTANT number(5) := 0;
    wdAlignParagraphRight CONSTANT number(5) := 2;
    ---- HexColor = BBGGRR
    myLightBlue CONSTANT number(8) := 16755370; --FFAAAA
    BEGIN
    hFont := OLE2.GET_OBJ_PROPERTY(selin, 'Font');
    OLE2.SET_PROPERTY(hFont, 'Name', 'Calibri');
    OLE2.SET_PROPERTY(hFont, 'Size', 10);
    OLE2.SET_PROPERTY(hFont, 'Bold', False);
    OLE2.SET_PROPERTY(hFont, 'Underline', wdUnderlineSingle);
    OLE2.RELEASE_OBJ(hFont);
    v_args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(v_args, textin);
    OLE2.INVOKE(selin, 'TypeText', v_args);
    OLE2.DESTROY_ARGLIST(v_args);
    END;
    Edited by: smilingbandit on 31-Mar-2010 7:05 PM
    Edited by: smilingbandit on 31-Mar-2010 8:23 PM
    Edited by: smilingbandit on Apr 1, 2010 6:14 AM: Reason - Fixed formatting of comments.

  • How to use saveas webarchive in word using OLE2

    Hello,
    I am using the webutil word demo (without webutil) on the client. This demo is working fine.
    Now I like to save the file not as a word document, but as a WebArchive or html file. How can I pass the fileformat argument to the saveas invoke call. Or is there a other way to do this using ole2.
    Below the demo code.
    Thanks in advance,
    Fred.
    DECLARE
    app OLE2.OBJ_TYPE;
    docs OLE2.OBJ_TYPE;
    doc OLE2.OBJ_TYPE;
    selection OLE2.OBJ_TYPE;
    args OLE2.LIST_TYPE;
    BEGIN
    -- create a new document
    app := OLE2.CREATE_OBJ('Word.Application');
    OLE2.SET_PROPERTY (app,'Visible',1);
    docs := OLE2.GET_OBJ_PROPERTY(app, 'Documents');
    doc := OLE2.INVOKE_OBJ(docs, 'add');
    selection := OLE2.GET_OBJ_PROPERTY(app, 'Selection');
    -- insert data into new document from long item
    OLE2.SET_PROPERTY(selection, 'Text', 'this is a test message');
    -- save document as example.tmp
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'c:\example.doc');
    OLE2.INVOKE(doc, 'SaveAs', args);
    OLE2.DESTROY_ARGLIST (args);
    -- close example.tmp
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 0);
    OLE2.INVOKE(doc, 'Close', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.RELEASE_OBJ(selection);
    OLE2.RELEASE_OBJ(doc);
    OLE2.RELEASE_OBJ (docs);
    Using OLE Commands
    OLE2.INVOKE(app,'Quit');
    END;

    Hi Fred,
    Word's SaveAs() method takes file format as it's second argument. The following code snippet shows how to save as HTML:
      args := OLE2.CREATE_ARGLIST;
      OLE2.ADD_ARG(args, 'c:\example.html');
      OLE2.ADD_ARG(args, 8);
      OLE2.INVOKE(doc, 'SaveAs', args);Eric Adamson
    Lansing, Michigan

  • My phone continues to freeze..i down loaded picture maker used it for about 30 min then phone startted to freeze can restart and does the same thing

    my phone is frozen..I had down loaded picture maker and used it for a little while..phone started freezing...will restart but freeze again..first smart phone not really good with it yet..trying to uninstall things but keeps freezing

        tene,
    I am sorry to hear that you are having trouble with your device. We want to make sure that you always have a good experience with a new device. What model phone do you have? Have you tried removing the recently downloaded app. Please fill us in and I am sure we can get this fixed right away.
    Thank you,
    TonyG_VZW
    Follow us on Twitter @VZWSupport

  • I recently started using an iPad. I up loaded several apps. Evernote, cloudon, Goodreader, Drop Box and lots of others. It crashes when I down load pictures and then try to use them. Converting a jpg to a pdf usually triggers a crash.  Help

    I recently started using an iPad. I up loaded several apps. Evernote, cloudon, Goodreader, Drop Box and lots of others.
    It crashes when I down load pictures and then try to use them. Converting a jpg to a pdf usually triggers a crash.
    Is there a "hitch" in my "giddy up?"
    Help.
    Process:         iPhoto [345]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.4.2 (9.4.2)
    Build Info:      iPhotoProject-710042000000000~2
    App Item ID:     408981381
    App External ID: 11723545
    Code Type:       X86 (Native)
    Parent Process:  launchd [183]
    Date/Time:       2013-04-26 13:53:18.305 -0700
    OS Version:      Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Interval Since Last Report:          405039 sec
    Crashes Since Last Report:           7
    Per-App Interval Since Last Report:  318933 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      5073147D-D214-4BD3-B7FA-9A9E6A158ABA
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000c8fc0000
    VM Regions Near 0xc8fc0000:
        CG backing stores      00000000c8ea6000-00000000c8f19000 [  460K] rw-/rw- SM=SHM 
    --> CG backing stores      00000000c8fc0000-00000000c92f7000 [ 3292K] r--/rw- SM=SHM 
        Submap                 00000000ffff0000-00000000ffff2000          r-x/r-x process-only submap
    Application Specific Information:
    objc[345]: garbage collection is OFF
    Performing @selector(doSaveAsPDF:) from sender NSMenuItem 0x6da8c240
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreGraphics        0x93976aec blt_pattern_blend_XXXX32 + 686
    1   com.apple.CoreGraphics        0x93976def blt_bitmap_blend_AXXX32 + 105
    2   com.apple.CoreGraphics        0x9355894c argb32_mark_pixelshape + 19824
    3   com.apple.CoreGraphics        0x93485293 argb32_mark + 279
    4   com.apple.CoreGraphics        0x9349c915 argb32_image + 1037
    5   libRIP.A.dylib                0x90afec75 ripd_Mark + 279
    6   libRIP.A.dylib                0x90afcc67 ripl_BltImage + 1368
    7   libRIP.A.dylib                0x90afc497 ripc_RenderImage + 269
    8   libRIP.A.dylib                0x90b08a8c ripc_DrawImages + 6467
    9   com.apple.CoreGraphics        0x935593be CGContextDrawImages + 239
    10  com.apple.coreui              0x94680a79 CUIPenCG::DrawImages(void*, CGRect const*, CGImage**, CGRect const*, unsigned long) + 45
    11  com.apple.coreui              0x94671fc5 CUIRenderer::DrawWindowFrameDark(CUIDescriptor const*) + 4531
    12  com.apple.coreui              0x9465ce0d CUIRenderer::Draw(CGRect, CGContext*, __CFDictionary const*, __CFDictionary const**) + 5701
    13  com.apple.coreui              0x9467dde5 CUIDraw + 206
    14  com.apple.AppKit              0x912a52e4 _NSDrawThemeBackground + 1429
    15  com.apple.AppKit              0x9145edeb -[NSThemeFrame _drawUnifiedToolbar:] + 874
    16  com.apple.AppKit              0x9145e7f3 -[NSThemeFrame _drawTitleBar:] + 673
    17  com.apple.AppKit              0x912a11cf -[NSThemeFrame _drawFrameInterior:clip:] + 125
    18  com.apple.AppKit              0x912a0dd9 -[NSThemeFrame drawFrame:] + 119
    19  com.apple.AppKit              0x9145e515 -[NSFrameView drawRect:] + 765
    20  com.apple.AppKit              0x9145dc5f -[NSThemeFrame drawRect:] + 107
    21  com.apple.AppKit              0x9126f6c9 -[NSView _drawRect:clip:] + 3717
    22  com.apple.AppKit              0x9129eae6 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1958
    23  com.apple.AppKit              0x9126d026 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 708
    24  com.apple.AppKit              0x9126c627 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 259
    25  com.apple.AppKit              0x91267caa -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4817
    26  com.apple.AppKit              0x91260bd9 -[NSView displayIfNeeded] + 1365
    27  com.apple.AppKit              0x9138081b -[NSThemeFrame handleSetFrameCommonRedisplay] + 233
    28  com.apple.AppKit              0x913220b8 -[NSWindow _setFrameCommon:display:stashSize:] + 2253
    29  com.apple.AppKit              0x913217e6 -[NSWindow setFrame:display:] + 71
    30  com.apple.AppKit              0x913c5049 -[NSWindow _setFrameAfterMove:] + 496
    31  com.apple.AppKit              0x913c4e3f -[NSWindow _windowMovedToRect:] + 261
    32  com.apple.AppKit              0x9195152d -[NSWindow _getPositionFromServer] + 100
    33  com.apple.AppKit              0x919542a8 -[NSWindow _initFromGlobalWindow:inRect:styleMask:] + 350
    34  com.apple.RemoteViewServices  0x94640ff9 -[NSRemoteWindowController _remoteHostDidGrantRights:] + 335
    35  com.apple.RemoteViewServices  0x946409a4 __58-[NSRemoteWindowController _handleReplySetupSharedWindow:]_block_invoke_0 + 43
    36  com.apple.CoreGraphics        0x935c740b _WindowRightsGrantOfferedNotificationHandler + 678
    37  com.apple.CoreGraphics        0x93400a3b CGSPostLocalNotification + 218
    38  com.apple.CoreGraphics        0x934cdcfd notifyDatagramHandler + 265
    39  com.apple.CoreGraphics        0x934cda25 CGSDispatchDatagramsFromStream + 316
    40  com.apple.CoreGraphics        0x934cd594 snarfEvents + 481
    41  com.apple.CoreGraphics        0x934cd247 CGSGetNextEventRecordInternal + 127
    42  com.apple.CoreGraphics        0x93520180 CGEventCreateNextEvent + 40
    43  com.apple.HIToolbox           0x9b5a744e _ZL38PullEventsFromWindowServerOnConnectionjh + 69
    44  com.apple.CoreFoundation      0x9585ad0a __CFMachPortPerform + 346
    45  com.apple.CoreFoundation      0x9585ab91 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 49
    46  com.apple.CoreFoundation      0x9585a7bb __CFRunLoopDoSource1 + 155
    47  com.apple.CoreFoundation      0x95893e01 __CFRunLoopRun + 2193
    48  com.apple.CoreFoundation      0x958931dc CFRunLoopRunSpecific + 332
    49  com.apple.CoreFoundation      0x958a3f01 CFRunLoopRun + 129
    50  com.apple.RemoteViewServices  0x9463b7c8 -[NSRemoteSavePanel runModal] + 322
    51  com.apple.RemoteViewServices  0x9463ef05 -[NSRemoteSavePanel runModalForDirectory:file:types:] + 110
    52  com.apple.RemoteViewServices  0x9463ec94 -[NSRemoteSavePanel runModalForDirectory:file:] + 55
    53  com.apple.print.framework.Print.Private 0x1990afa3 AskUserForFile + 420
    54  com.apple.print.framework.Print.Private 0x1991977d 0x198f7000 + 141181
    55  com.apple.print.framework.Print.Private 0x1991ea91 0x198f7000 + 162449
    56  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    57  com.apple.AppKit              0x91329663 -[NSApplication sendAction:to:from:] + 232
    58  com.apple.AppKit              0x9141ccaf -[NSMenuItem _corePerformAction] + 536
    59  com.apple.AppKit              0x9141c92c -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 171
    60  com.apple.AppKit              0x9141bfb5 -[NSMenu _performActionWithHighlightingForItemAtIndex:sendAccessibilityNotification:] + 79
    61  com.apple.AppKit              0x916f7ef7 -[NSMenu performActionForItemAtIndex:] + 65
    62  com.apple.AppKit              0x916f7f2a -[NSMenu _internalPerformActionForItemAtIndex:] + 45
    63  com.apple.AppKit              0x916fc15b -[NSMenuItem _internalPerformActionThroughMenuIfPossible] + 106
    64  com.apple.AppKit              0x91562670 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 172
    65  com.apple.AppKit              0x91392246 NSSLMMenuEventHandler + 452
    66  com.apple.HIToolbox           0x9b71cc0c _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    67  com.apple.HIToolbox           0x9b598313 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    68  com.apple.HIToolbox           0x9b597790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    69  com.apple.HIToolbox           0x9b5ac571 SendEventToEventTarget + 76
    70  com.apple.HIToolbox           0x9b71d0d0 _ZL18SendHICommandEventmPK9HICommandmmhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 482
    71  com.apple.HIToolbox           0x9b71d13a SendMenuCommandWithContextAndModifiers + 70
    72  com.apple.HIToolbox           0x9b78898d SendMenuItemSelectedEvent + 275
    73  com.apple.HIToolbox           0x9b5e8d79 _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 129
    74  com.apple.HIToolbox           0x9b778752 _ZL19PopUpMenuSelectCoreP8MenuData5PointdS1_tjPK4RecttmS4_S4_PK10__CFStringPP13 OpaqueMenuRefPt + 1898
    75  com.apple.HIToolbox           0x9b778a20 _HandlePopUpMenuSelection7 + 639
    76  com.apple.AppKit              0x91565aa2 _NSSLMPopUpCarbonMenu3 + 4532
    77  com.apple.AppKit              0x9198ab4c _NSPopUpCarbonMenu3 + 107
    78  com.apple.AppKit              0x91563754 -[NSCarbonMenuImpl popUpMenu:atLocation:width:forView:withSelectedItem:withFont:withFlags:withOpti ons:] + 425
    79  com.apple.AppKit              0x91787b78 -[NSPopUpButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 610
    80  com.apple.AppKit              0x91327243 -[NSControl mouseDown:] + 943
    81  com.apple.AppKit              0x912f0dcd -[NSWindow sendEvent:] + 7533
    82  com.apple.AppKit              0x91289f77 -[NSApplication sendEvent:] + 4788
    83  com.apple.iLifeKit            0x0201dc9b -[iLifeKit sendEvent:] + 55
    84  com.apple.iPhoto              0x0012c344 0xac000 + 525124
    85  com.apple.AppKit              0x914f1662 -[NSApplication _modalSession:sendEvent:] + 550
    86  com.apple.AppKit              0x914f122c -[NSApplication _realDoModalLoop:peek:] + 638
    87  com.apple.AppKit              0x914ec481 -[NSApplication _doModalLoop:peek:] + 69
    88  com.apple.AppKit              0x914f0f08 -[NSApplication runModalForWindow:] + 258
    89  com.apple.AppKit              0x91794a93 -[NSPrintPanel runModalWithPrintInfo:] + 621
    90  com.apple.AppKit              0x917929ec -[NSConcretePrintOperation runOperation] + 333
    91  com.apple.iPhoto              0x00363141 0xac000 + 2847041
    92  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    93  com.apple.AppKit              0x91329663 -[NSApplication sendAction:to:from:] + 232
    94  com.apple.AppKit              0x91329540 -[NSControl sendAction:to:] + 102
    95  com.apple.AppKit              0x91329443 -[NSCell _sendActionFrom:] + 160
    96  com.apple.AppKit              0x91328800 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 2295
    97  com.apple.AppKit              0x913aba95 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 501
    98  com.apple.AppKit              0x91327243 -[NSControl mouseDown:] + 943
    99  com.apple.AppKit              0x912f0dcd -[NSWindow sendEvent:] + 7533
    100 com.apple.AppKit              0x91289f77 -[NSApplication sendEvent:] + 4788
    101 com.apple.iLifeKit            0x0201dc9b -[iLifeKit sendEvent:] + 55
    102 com.apple.iPhoto              0x0012c344 0xac000 + 525124
    103 com.apple.AppKit              0x9121bb21 -[NSApplication run] + 1007
    104 com.apple.AppKit              0x914acac5 NSApplicationMain + 1054
    105 com.apple.iPhoto              0x000bbc99 0xac000 + 64665
    106 com.apple.iPhoto              0x000bb2e5 0xac000 + 62181
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib        0x9a596b5e __select_nocancel + 10
    1   libdispatch.dylib             0x96b4ecbd _dispatch_mgr_invoke + 642
    2   libdispatch.dylib             0x96b4d853 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock             0x023e748f -[RKAsyncImageRenderer _backgroundRenderThread:] + 173
    7   com.apple.CoreFoundation      0x958fb1aa -[NSObject performSelector:] + 58
    8   com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    9   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    10  com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    11  com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    12  com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    13  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    14  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    15  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    16  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    17  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib        0x9a595e12 __accept + 10
    1   com.apple.iPhoto              0x004a424d 0xac000 + 4162125
    2   com.apple.iPhoto              0x004ee651 0xac000 + 4466257
    3   com.apple.iPhoto              0x004ee5be 0xac000 + 4466110
    4   libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    5   libsystem_c.dylib             0x994596de thread_start + 34
    Thread 11:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib        0x9a596b42 __select + 10
    1   com.apple.CoreFoundation      0x958e1e15 __CFSocketManager + 1557
    2   libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    3   libsystem_c.dylib             0x994596de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation          0x9970fbe8 -[NSCondition wait] + 304
    4   com.apple.iPhoto              0x000fda64 0xac000 + 334436
    5   com.apple.iPhoto              0x000fd672 0xac000 + 333426
    6   com.apple.CoreFoundation      0x958f5a9d __invoking___ + 29
    7   com.apple.CoreFoundation      0x958f59d9 -[NSInvocation invoke] + 137
    8   com.apple.RedRock             0x0240385b -[RKInvoker _invokeTarget:] + 33
    9   com.apple.RedRock             0x024145f4 -[RKInvoker _invokeTargetWithPool:] + 68
    10  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    11  com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    12  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    13  com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    14  com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    15  com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    16  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    17  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    18  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    19  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    20  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore 0x9279e3a7 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore 0x9279e11d TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore 0x9279df2e TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component 0x9736a16a 0x96d7d000 + 6213994
    7   libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    8   libsystem_c.dylib             0x994596de thread_start + 34
    Thread 14:: CVDisplayLink
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreVideo           0x97f120cd CVDisplayLink::runIOThread() + 945
    4   com.apple.CoreVideo           0x97f11d05 _ZL13startIOThreadPv + 160
    5   libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    6   libsystem_c.dylib             0x994596de thread_start + 34
    Thread 15:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x9940182a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component 0x9748c467 0x96d7d000 + 7402599
    4   libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    5   libsystem_c.dylib             0x994596de thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto              0x005acdd1 0xac000 + 5246417
    4   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    5   com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    6   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    7   com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    8   com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    9   com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    10  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    11  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    12  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    13  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    14  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto              0x00175872 0xac000 + 825458
    4   com.apple.CoreFoundation      0x958f5a9d __invoking___ + 29
    5   com.apple.CoreFoundation      0x958f59d9 -[NSInvocation invoke] + 137
    6   com.apple.RedRock             0x0240385b -[RKInvoker _invokeTarget:] + 33
    7   com.apple.RedRock             0x024145f4 -[RKInvoker _invokeTargetWithPool:] + 68
    8   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    9   com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    10  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    11  com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    12  com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    13  com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    14  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    15  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    16  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    17  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    18  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 19:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib        0x9a594c76 semaphore_timedwait_trap + 10
    1   libdispatch.dylib             0x96b50a55 _dispatch_semaphore_wait_slow + 274
    2   libdispatch.dylib             0x96b50ab4 dispatch_semaphore_wait + 36
    3   com.apple.RemoteViewServices  0x9463a725 __54-[NSRemoteSavePanel _runOrderingOperationWithContext:]_block_invoke_0345 + 79
    4   libdispatch.dylib             0x96b4cfbd _dispatch_call_block_and_release + 15
    5   libdispatch.dylib             0x96b4e01c _dispatch_worker_thread2 + 231
    6   libsystem_c.dylib             0x99457b24 _pthread_wqthread + 346
    7   libsystem_c.dylib             0x994596fe start_wqthread + 30
    Thread 20:
    0   libsystem_kernel.dylib        0x9a59702e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99457ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x994596fe start_wqthread + 30
    Thread 21:
    0   libsystem_kernel.dylib        0x9a59702e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99457ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x994596fe start_wqthread + 30
    Thread 22:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto              0x005acdd1 0xac000 + 5246417
    4   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    5   com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    6   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    7   com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    8   com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    9   com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    10  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    11  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    12  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    13  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    14  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto              0x00175872 0xac000 + 825458
    4   com.apple.CoreFoundation      0x958f5a9d __invoking___ + 29
    5   com.apple.CoreFoundation      0x958f59d9 -[NSInvocation invoke] + 137
    6   com.apple.RedRock             0x0240385b -[RKInvoker _invokeTarget:] + 33
    7   com.apple.RedRock             0x024145f4 -[RKInvoker _invokeTargetWithPool:] + 68
    8   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    9   com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    10  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    11  com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    12  com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    13  com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    14  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    15  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    16  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    17  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    18  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 24:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto              0x001bb758 0xac000 + 1111896
    4   com.apple.CoreFoundation      0x958f5a9d __invoking___ + 29
    5   com.apple.CoreFoundation      0x958f59d9 -[NSInvocation invoke] + 137
    6   com.apple.RedRock             0x0240385b -[RKInvoker _invokeTarget:] + 33
    7   com.apple.RedRock             0x024145f4 -[RKInvoker _invokeTargetWithPool:] + 68
    8   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    9   com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    10  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    11  com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    12  com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    13  com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    14  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    15  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    16  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    17  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    18  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 25:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib        0x9a596bb2 __semwait_signal + 10
    1   libsystem_c.dylib             0x9940a7b9 nanosleep$UNIX2003 + 187
    2   libsystem_c.dylib             0x9940a558 usleep$UNIX2003 + 60
    3   com.apple.AppKit              0x914646da -[NSUIHeartBeat _heartBeatThread:] + 2399
    4   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    5   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    6   libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    7   libsystem_c.dylib             0x994596de thread_start + 34
    Thread 26:
    0   libsystem_kernel.dylib        0x9a59702e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99457ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x994596fe start_wqthread + 30
    Thread 27:
    0   libsystem_kernel.dylib        0x9a59702e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99457ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x994596fe start_wqthread + 30
    Thread 28:
    0   libsystem_kernel.dylib        0x9a59702e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99457ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x994596fe start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000540  ebx: 0x15675480  ecx: 0x00000150  edx: 0x00000004
      edi: 0x0000ffff  esi: 0xc8fc0000  ebp: 0xc009f508  esp: 0xc009f460
       ss: 0x00000023  efl: 0x00010246  eip: 0x93976aec   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xc8fc0000
    Logical CPU: 0
    Binary Images:
       0xac000 -   0xd98feb  com.apple.iPhoto (9.4.2 - 9.4.2) <3AC6405B-33E2-3184-9F20-4C9CC5256A3A> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xf2a000 -  0x100afe7  org.python.python (2.6.7 - 2.6.7) <61DBA92A-C39A-3A52-86F2-59CF9D310CB4> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
    0x1056000 -  0x105efff  com.apple.PhotoFoundation (1.0 - 10.17) <D48FDC95-21FC-328C-9F4F-89C28A260C2D> /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/PhotoFoundation
    0x10cf000 -  0x12abffb  com.apple.geode (1.5.3 - 270.7) <DFD97416-FD86-3AF1-BFF0-79A47DADE257> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x133a000 -  0x133fff7  com.apple.iLifePhotoStreamConfiguration (3.4 - 2.5) <65A74F18-5020-31EC-B7E9-EBC14E2D9CA1> /Applications/iPhoto.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fram ework/Versions/A/iLifePhotoStreamConfiguration
    0x1347000 -  0x1376ff7  com.apple.iLifeAssetManagement (2.7 - 40.34) <2B65BA8A-2C25-360D-B50E-0A9EECA1CE57> /Applications/iPhoto.app/Contents/Frameworks/iLifeAssetManagement.framework/Ver sions/A/iLifeAssetManagement
    0x139b000 -  0x13c2ff3  com.apple.iPhoto.Tessera (1.1 - 70.18) <F190FD9B-9CC9-3D4D-9744-113F7CA36097> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x13d6000 -  0x13faffb  com.apple.iPhoto.Tellus (1.3 - 70.18) <768463A7-60B4-3D50-B36B-D6E5AFA43DC9> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x1411000 -  0x141cfff  com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <86E53BF3-BCAD-36F9-999B-013E359EF079> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x1427000 -  0x143cffb  com.apple.iLifeFaceRecognition (1.0 - 30.11) <4A781CBF-9764-3531-91E0-94C5B4DFCFDF> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
    0x1448000 -  0x1474ffb  com.apple.DiscRecordingUI (6.0.4 - 6040.4.1) <F3EDDD79-611F-3ECC-9B78-0AB8BAC0D446> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x1490000 -  0x1492fff  com.apple.ExceptionHandling (1.5 - 10) <6CA9446C-7EF9-35EE-BDF2-AA8D51E93E9E> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x149b000 -  0x14a6ff7  com.apple.UpgradeChecker (9.2 - 9.2) <D34CC218-8200-34D7-816C-B747EE4BF5F7> /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x14b2000 -  0x184bff3  com.apple.iLifeSlideshow (3.1 - 1151.4) <B03978EF-A395-30D4-833B-7C474E1F5F12> /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/iLifeSlideshow
    0x1948000 -  0x1bd9ff3  com.apple.iLifePageLayout (1.3 - 200.9) <067ACE80-5B73-39EE-850B-E392F6573AAC> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/iLifePageLayout
    0x1cb5000 -  0x1d4cff7  com.apple.MobileMe (13 - 1.0.4) <5E6C6DEC-1F48-358F-8117-40FAAEB8AFAD> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x1da8000 -  0x1e10ff3  com.apple.proxtcore (1.4.1 - 250.56) <BBADA727-FB78-32AF-8D45-4498F68343A7> /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x1e52000 -  0x1f50ff7  com.apple.iLifeSQLAccess (1.7.1 - 60.5) <845C6292-8EC2-3B4A-8E2E-8D98986148C2> /Applications/iPhoto.app/Contents/Frameworks/iLifeSQLAccess.framework/Versions/ A/iLifeSQLAccess
    0x1f99000 -  0x1fc4ffb  com.apple.ProUtils (1.1 - 200.36) <E286BD1F-0BE8-3151-B758-89870AB4AC89> /Applications/iPhoto.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProU tils
    0x1fde000 -  0x2049fff  com.apple.iLifeKit (1.3.1 - 156.11) <F93283F4-046D-3653-9607-8B0F850E6318> /Applications/iPhoto.app/Contents/Frameworks/iLifeKit.framework/Versions/A/iLif eKit
    0x208e000 -  0x22b6ff7  com.apple.prokit (7.2.3 - 1823) <0FEDF2D7-F31A-36F2-91A9-C03877B0CB46> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x23c4000 -  0x28f0ffb  com.apple.RedRock (1.9.4 - 310.33) <548258F5-3AE9-3AD4-B986-A9674D131164> /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
    0x2aee000 -  0x2b04ffb  com.apple.AOSAccounts (1.0.2 - 1.0.71) <13763832-1B2B-32E8-95BC-C23A627E6DD4> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
    0x2b19000 -  0x2b53ff3  com.apple.Ubiquity (1.1 - 210.2) <F8426ABA-BB3F-3A48-BF4E-9A0F6C12634F> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x2b6e000 -  0x2b6eff6  com.apple.SafariDAVNotifier (1.1.1 - 1) <DE95A56E-E2C8-3D96-B628-4DC6FA6CDD39> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
    0x2b74000 -  0x2b95ff7  com.apple.ChunkingLibrary (1.0 - 127.2) <8C1C8488-71E4-3C13-AF75-95CF06C040A3> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x2ba1000 -  0x2ba3fff  com.apple.LibraryRepair (1.0 - 1) <8D2DE423-2226-395A-9D90-3C43911F8613> /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air
    0x2bab000 -  0x2c05fff  com.apple.proapps.MIO (1.0.6 - 512) <8321DF77-4AD8-376B-9465-83F471AA61D2> /Applications

    It crashes when I down load pictures and then try to use them. Converting a jpg to a pdf usually triggers a crash.
    Are you using the "Print to PDF" dialogue to convert your jpegs to pdf?
    In addition to OT's test, you might also check, if using a different "Theme" for printing will avoid the crash:
    14  com.apple.AppKit               0x912a52e4 _NSDrawThemeBackground + 1429
    15  com.apple.AppKit               0x9145edeb -[NSThemeFrame
    You crashlog shows, that iPhoto crashes, when trying to draw the "Print" theme background. There could be a problem wit the installed themes. Can you convert any jpegs to pdf, not only the jpegs downloaded from your iPad?
    Léonie

  • Just installed PS 13 elements and loaded pictures into organizer. after using PS editor now organizer is not reloading. I keep getting error message saying organizer unexpectedly quit, do you want to reopen.  When I click on it to reopen it doesn't and I

    just installed PS 13 elements and loaded pictures into organizer. after using PS editor now organizer is not reloading. I keep getting error message saying organizer unexpectedly quit, do you want to reopen.  When I click on it to reopen it doesn't and I get the same message again.  I rebooted computer, still did it,  I uninstalled and reinstalled the program and I am still getting the same error message.  This is on Mac OS with yosemite.  Any Ideas Please!!!

    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff9219f4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff9219e64f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff97717b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff97716ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff97716858 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff8e85533b _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff974c1268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff974c11e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff974bf41d thread_start + 13
    Thread 9:: cr_scratch
    0   libsystem_kernel.dylib         0x00007fff921a4136 __psynch_cvwait + 10
    1   com.adobe.CameraRaw           0x000000012122478b 0x120c28000 + 6277003
    2   com.adobe.CameraRaw           0x00000001211ad48b 0x120c28000 + 5788811
    3   com.adobe.CameraRaw           0x0000000120fad001 0x120c28000 + 3690497
    4   libsystem_pthread.dylib       0x00007fff974c1268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff974c11e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff974bf41d thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff9219f4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff9219e64f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff97717b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff97716ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff97716858 CFRunLoopRunSpecific + 296
    5   com.apple.CoreFoundation       0x00007fff977ccef1 CFRunLoopRun + 97
    6   com.adobe.ols.library         0x00000001235ebc86 OLSHTTPTransaction::Execute() + 4166
    7   com.adobe.ols.library         0x00000001236174f9 OLSServiceTask::PerformMessageExchangeServerPOST(OLSAutoRefPtr<OLSElement> const&, OLSAutoRefPtr<OLSElement> const&) + 1849
    8   com.adobe.ols.library         0x000000012360958a OLSServiceTask::PerformMessageExchangeServer(OLSAutoRefPtr<OLSElement> const&, OLSAutoRefPtr<OLSElement> const&) + 1834
    9   com.adobe.ols.library         0x000000012361626c OLSServiceTask::ProcessUnhandledMessageList(OLSAutoRefPtr<OLSElement> const&, OLSAutoRefPtr<OLSElement> const&, OLSAutoRefPtr<OLSElement> const&, OLSMessageOrigin) + 1804
    10  com.adobe.ols.library         0x00000001235c885c OLSClientSession::ProcessUnhandledMessageList(OLSAutoRefPtr<OLSElement> const&, OLSAutoRefPtr<OLSElement> const&, OLSAutoRefPtr<OLSElement> const&, OLSMessageOrigin) + 124
    11  com.adobe.ols.library         0x00000001235c6921 OLSClientSession::ProcessMessageList(OLSAutoRefPtr<OLSElement> const&, OLSAutoRefPtr<OLSElement> const&, OLSMessageOrigin) + 2593
    12  com.adobe.ols.library         0x0000000123608d3a OLSServiceTask::ExecuteStateMessageExchangeServer() + 426
    13  com.adobe.ols.library         0x00000001236010cc OLSServiceTask::ExecuteInternal() + 1196
    14  com.adobe.ols.library         0x000000012361b22e OLSTask::Execute() + 350
    15  com.adobe.ols.library         0x000000012361c874 OLSWorkerThreadTaskManager::ProcessTasks(OLSTaskThread*) + 1300
    16  com.adobe.ols.library         0x000000012361b454 OLSTaskThread::Run() + 36
    17  com.adobe.ols.library         0x000000012363fd88 OLSThread::ThreadProc(void*) + 54
    18  com.apple.CoreServices.CarbonCore 0x00007fff9c7108dc PrivateMPEntryPoint + 58
    19  libsystem_pthread.dylib       0x00007fff974c1268 _pthread_body + 131
    20  libsystem_pthread.dylib       0x00007fff974c11e5 _pthread_start + 176
    21  libsystem_pthread.dylib       0x00007fff974bf41d thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib         0x00007fff921a475a __sigwait + 10
    1   com.adobe.ElementsOrganizer13 0x000000010dce1a84 0x10cc7e000 + 17185412
    2   com.adobe.ElementsOrganizer13 0x000000010dce5d15 0x10cc7e000 + 17202453
    3   libsystem_pthread.dylib       0x00007fff974c1268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff974c11e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff974bf41d thread_start + 13
    Thread 12:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff9219f4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff9219e64f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff97717b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff97716ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff97716858 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork           0x00007fff8fcfac80 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation           0x00007fff90df190a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib       0x00007fff974c1268 _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff974c11e5 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff974bf41d thread_start + 13
    Thread 13:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff921a43fa __select + 10
    1   libsystem_pthread.dylib       0x00007fff974c1268 _pthread_body + 131
    2   libsystem_pthread.dylib       0x00007fff974c11e5 _pthread_start + 176
    3   libsystem_pthread.dylib       0x00007fff974bf41d thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib         0x00007fff921a4136 __psynch_cvwait + 10
    1   com.adobe.ElementsOrganizer13 0x000000010dce02fd 0x10cc7e000 + 17179389
    2   com.adobe.ElementsOrganizer13 0x000000010cd34e19 0x10cc7e000 + 749081
    3   com.adobe.ElementsOrganizer13 0x000000010dce5d15 0x10cc7e000 + 17202453
    4   libsystem_pthread.dylib       0x00007fff974c1268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff974c11e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff974bf41d thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib         0x00007fff921a4136 __psynch_cvwait + 10
    1   com.adobe.ElementsOrganizer13 0x000000010dce02fd 0x10cc7e000 + 17179389
    2   com.adobe.ElementsOrganizer13 0x000000010cd34e19 0x10cc7e000 + 749081
    3   com.adobe.ElementsOrganizer13 0x000000010dce5d15 0x10cc7e000 + 17202453
    4   libsystem_pthread.dylib       0x00007fff974c1268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff974c11e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff974bf41d thread_start + 13
    Thread 16:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff921a4136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8fb2ad2e std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 126
    2   com.apple.JavaScriptCore       0x00007fff99593aaa JSC::BlockAllocator::waitForDuration(std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 170
    3   com.apple.JavaScriptCore       0x00007fff993828f4 JSC::BlockAllocator::blockFreeingThreadMain() + 84
    4   com.apple.JavaScriptCore       0x00007fff9937814f WTF::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff974c1268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff974c11e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff974bf41d thread_start + 13
    Thread 17:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff921a4136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8fb2ac95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff99382f1b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff99382d78 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff9937814f WTF::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff974c1268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff974c11e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff974bf41d thread_start + 13
    Thread 18:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff921a4136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8fb2ac95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff99382f1b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff99382d78 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff9937814f WTF::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff974c1268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff974c11e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff974bf41d thread_start + 13
    Thread 19:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff921a4136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8fb2ac95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff99382f1b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff99382d78 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff9937814f WTF::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff974c1268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff974c11e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff974bf41d thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00000000000000b0  rbx: 0x00006080000b4460  rcx: 0x00007fff52f7da08  rdx: 0x00007fff52f7d8c0
      rdi: 0x00006080001d31a0  rsi: 0x0000000000000000  rbp: 0x00007fff52f7d860  rsp: 0x00007fff52f7d830
       r8: 0x00007fff52f7d9d8   r9: 0x00007fff52f7d9a0  r10: 0x0000000000000000  r11: 0x0000000110825b90
      r12: 0x00007fff52f7d9a0  r13: 0x00007fff52f7e0e8  r14: 0x00007fff52f7d8c0  r15: 0x00006080000b4460
      rip: 0x0000000110825ba6  rfl: 0x0000000000010206  cr2: 0x0000000000000000
    Logical CPU:     1
    Error Code:      0x00000004
    Trap Number:     14

  • IPhoto just stopped working. It loads pictures, but then goes into rainbow wheel forever. Then I try to force quit it, and then the whole Mac hangs up (had to power cycle it to get it back). I am using OS 10.5.8, and when I run software update, it assures

    iPhoto just stopped working. It loads pictures, but then goes into rainbow wheel forever. Then I try to force quit it, and then the whole Mac hangs up (had to power cycle it to get it back). I am using OS 10.5.8, and when I run software update, it assures me I have up to date software. I have not added any photos since the last time I used it, probably less than a month ago. What gives?

    Try these in order - from best option on down...
    1. Do you have an up-to-date back up? If so, try copy the library6.iphoto file from the back up to the iPhoto Library allowing it to overwrite the damaged file.
    2. Download <a href="http://www.fatcatsoftware.com/iplm/"><b><u>iPhoto Library Manager</b></u></a> and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    3. If neither of these work then you'll need to create and populate a new library.
    To create and populate a new *iPhoto 6* library:
    Note this will give you a working library with the same Rolls and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library on your desktop and find the Originals folder. From the Originals folder drag the individual Roll Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption.

  • HT4101 I have used my SD card reader with the lightning connector just fine until this awful OS 7 update! Now nothing works and all I get while trying to load pictures from my SD card to my iPad is that my device is not supported!

    Anyone having the same problem with the new OS7? I can no longer load pictures from my SD card to my iPad using my adapter.

    Are the card readers apple ones or knockoffs? Unfortunately iOS7 brought with it software that looks for the authentication chip in  the cables and docks. If the manufacturer got permission from Apple to make devices then it should be fine, but if the manufacturer didn't get apple's permission then their chip isn't recognized, generating that error.
    If your connectors are Apple ones have you tried to reset your device? Hold down the sleep and home keys for about 20 seconds or so until your iPad reboots. Then try again.

  • Why can I not load pictures from a micro SD 64gb using scan disk adapter plugged into an Apple iPad camera connection kit.  I have the iPhoto app but pictures not being seen on iPad.  So incredibly frustrating.  Apple please fix this.

    Why can I not load pictures from a micro SD 64gb using scan disk adapter plugged into an Apple iPad camera connection kit.  I have the iPhoto app but pictures not being seen on iPad.  So incredibly frustrating.  Apple please fix this.

    Do you have a smaller capacity micro SD card to try? I seem to remember from past posts that users were having problems with cards larger than 32GB, however, Apple's page doesn't mention this.
    Using The iPad Camera Connection Kit
    http://support.apple.com/kb/HT4101
    What format are the pics - jpg or raw?
     Cheers, Tom

  • I am using I Photo 4.0.3. When I start it, loading pictures never ends and I cannot use I Photo; What can I do?

    I am using I Photo 4.0.3. When I start it, loading pictures never ends and I cannot use I Photo; What can I do?

    When did this begin?  Did you run any updaters just before this began and, if so, what were they? 
    That's a very old iPhoto version so give this a try:
    1 - launch iPhoto with the Command+Option keys held down.
    2 - select Options #3 and #4.
    4 - Rebuild the library. 
    If that fails to help continue with this:
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, 
    navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the Library ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments. However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Call Word Macro by using OLE2

    Hi,
    I use oracle forms 6i to call a word macro by using OLE2 .
    The macro called 'MyMacro' cannot be run and view although
    I can run it calling from MS Word seperatly.
    Code Below and No Errors running;
    DECLARE
    -- Declare the OLE objects
    MyApplication OLE2.OBJ_TYPE;
    MyDocuments OLE2.OBJ_TYPE;
    MyDocument OLE2.OBJ_TYPE;
    -- Declare handle to the OLE argument list
    args OLE2.LIST_TYPE;
    BEGIN
    -- Create the Word.Application object and make Word visible
    -- by setting the 'Visible' property to true
    MyApplication:=OLE2.CREATE_OBJ('Word.Application');
    OLE2.SET_PROPERTY(MyApplication, 'Visible', 1);
    -- get a handle on Documents collection
    MyDocuments:=OLE2.GET_OBJ_PROPERTY(MyApplication, 'Documents');
    -- Open a document doc.doc in C:\
    args:=OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'C:\RAPOR\example.DOC');
    Mydocument :=OLE2.INVOKE_OBJ(MyDocuments,'Open',args);
    OLE2.DESTROY_ARGLIST(args);
    -- Execute the macro called 'MyMacro'
    args:=OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'MyMacro');
    OLE2.INVOKE(MyApplication,'Run',args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.RELEASE_OBJ(MyDocument);
    OLE2.RELEASE_OBJ(MyDocuments);
    OLE2.RELEASE_OBJ(MyApplication);
    END;
    ------- code ends here-----
    Thanks.

    Hello. Try :
    myapplication := ole2.create_obj ('Word.Application');
    ole2.set_property (myapplication, 'Visible', 1);
    mydocuments := ole2.get_obj_property (myapplication, 'Documents');
    args := ole2.create_arglist;
    ole2.add_arg (args, :aux.nome_arquivo);
    mydocument := ole2.invoke_obj (mydocuments, 'Open', args);
    ole2.destroy_arglist (args);
    args := ole2.create_arglist;
    ole2.add_arg (args, 'maximize'); -- your macro
    ole2.invoke (myapplication, 'Run', args);
    ole2.destroy_arglist (args);
    args := ole2.create_arglist;
    ole2.add_arg (args, 'organize'); -- your macro
    ole2.invoke (myapplication, 'Run', args);
    ole2.destroy_arglist (args);
    args := ole2.create_arglist;
    ole2.add_arg (args, 'print'); -- your macro
    ole2.invoke (myapplication, 'Run', args);
    ole2.destroy_arglist (args);
    args := ole2.create_arglist;
    ole2.add_arg (args, 'Fechar');
    ole2.invoke (myapplication, 'Run', args);
    ole2.destroy_arglist (args);
    args := ole2.create_arglist;
    ole2.Release_obj (mydocument);
    ole2.Release_obj (mydocuments);
    ole2.Release_obj (myapplication); -- if dont need close application then coment this line

  • Teach me use OLE2 to change a WORD doc. content, Urgent?

    Where can I have enougt infomation teach me how to use OLE2 statements to control a Word doc. so that I can change the content of a Word template before store into Oralce database.
    Anybody can teach me....Urgent!

    I am sorry, but we can't teach you OLE on this forum. WebUtil allows you to use OLE to integrate with Word and we do have an example on OTN that explains how to access and modify a Word document using WebUtil (http://www.oracle.com/technology/products/forms/htdocs/webutil/Webutil_demo.zip) but it doesn't explain how OLE works.
    Frank

  • When I load pictures, I only see one page, on the next pages the pictures are grey, how to slove this?

    When I load pictures, I only see one page with pictures. On the next page the pictures are grey. How to slove this?
    Thanks a lot.

    Sorry, I don't think I made myself clear on what I am trying to do.  I am looking for a way to do this process a lot quicker.  Sometimes these agendas could be 100 pages.  Since I can only select text from one page at a time from the PDF after I scan it, this takes up so much time.  What I am looking for is a way to open up the PDF file after scanning and be able to select text from all the pages and cut and paste into word.  For example:
    I scan 20 pages and save to PDF
    I can view all 20 pages - pages 1 to 20
    I want to highlight text starting at the beginning of Page 1 and ending on the last word on page 20?
    Cut and paste everything into word
    Is there a way to do this or should I be using another Adobe product to accomplish?
    Thank you.
    Cathy

  • Safari quits while loading pictures

    Ok, here is my "own topic" - though usually i am asked to try and post my questions in a similar post, so not to create too many posts...anyway I tried this:
    softylocks ~ & Erin
    http://discussions.apple.com/thread.jspa?threadID=461832&tstart=0
    Does your Safari crash in a different user account?
    If you have not tried that yet, try it. It is a helpful tool in troubleshooting
    Let use know the results in your Own topic post please.-
    and the result was the same, only now it quits without even loading the picture. It used to load the picture to my blog, then quit after pic was loaded without saving the pic /post.
    originally stated problem was: safari crashes (thats's the word the report uses) everytime I try anbd load a pic onto my blog at blogger.com. I have been loading pics successfully there for about 4 months, I even tried using pics that I have used before, thinking maybe the pic was corrupted somehow. Same result.
    I also: repaired permissions, tried creating new user, reset safari, restarted computer, reloaded blog page, turned off "block pop-up ads".
    I am using a powerbook g4 with OS 10.3.9, update and restart regularly. My internet connection is wireless 2Wire. The blog site I am trying to use is blogger.com and I have checked them for any current known issues with pics, they state none.
    Thanks anyone for your advice.

    This is what the console records when Safari crashes...
    Date/Time: 2006-08-23 20:40:33 +0100
    OS Version: 10.3.9 (Build 7W98)
    Report Version: 2
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Version: 1.3.2 (312.6)
    PID: 1184
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x908611f4 objc_msgSend + 0x14
    1 com.apple.Foundation 0x90a98a70 -[NSURLConnection(NSURLConnectionInternal) _sendWillSendRequestCallback] + 0x6c
    2 com.apple.Foundation 0x90a3d258 -[NSURLConnection(NSURLConnectionInternal) _sendCallbacks] + 0x154
    3 com.apple.Foundation 0x90a2798c -[NSArray makeObjectsPerformSelector:withObject:] + 0x108
    4 com.apple.Foundation 0x90a51b24 _sendCallbacks + 0xd4
    5 com.apple.CoreFoundation 0x901c4800 __CFRunLoopDoSources0 + 0x1fc
    6 com.apple.CoreFoundation 0x901c20b8 __CFRunLoopRun + 0x1b0
    7 com.apple.CoreFoundation 0x901c69e4 CFRunLoopRunSpecific + 0x148
    8 com.apple.HIToolbox 0x92886e10 RunCurrentEventLoopInMode + 0xac
    9 com.apple.HIToolbox 0x9288d53c ReceiveNextEventCommon + 0x17c
    10 com.apple.HIToolbox 0x928af638 BlockUntilNextEventMatchingListInMode + 0x60
    11 com.apple.AppKit 0x92e82248 _DPSNextEvent + 0x180
    12 com.apple.AppKit 0x92e98cc8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 0x74
    13 com.apple.Safari 0x0000bda0 0x1000 + 0xada0
    14 com.apple.AppKit 0x92ead048 -[NSApplication run] + 0x21c
    15 com.apple.AppKit 0x92f69764 NSApplicationMain + 0x1d0
    16 com.apple.Safari 0x00007fc4 0x1000 + 0x6fc4
    17 com.apple.Safari 0x00054944 0x1000 + 0x53944
    Thread 1:
    0 libSystem.B.dylib 0x900078b8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007438 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c2258 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c69e4 CFRunLoopRunSpecific + 0x148
    4 com.apple.Foundation 0x90a2d160 -[NSRunLoop runMode:beforeDate:] + 0xac
    5 com.apple.Foundation 0x90a45d64 -[NSRunLoop run] + 0x4c
    6 com.apple.WebKit 0x94ff3124 +[WebFileDatabase _syncLoop:] + 0xa8
    7 com.apple.Foundation 0x90a6a4b8 forkThreadForFunction + 0x6c
    8 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 2:
    0 libSystem.B.dylib 0x900078b8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007438 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c2258 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c69e4 CFRunLoopRunSpecific + 0x148
    4 com.apple.Foundation 0x90a2d160 -[NSRunLoop runMode:beforeDate:] + 0xac
    5 com.apple.Foundation 0x90a45d64 -[NSRunLoop run] + 0x4c
    6 com.apple.Foundation 0x90a97ffc +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 0x20c
    7 com.apple.Foundation 0x90a6a4b8 forkThreadForFunction + 0x6c
    8 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 3:
    0 libSystem.B.dylib 0x9000b46c select + 0xc
    1 com.apple.Foundation 0x90a2296c _loadRunLoop + 0xd4
    2 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 4:
    0 libSystem.B.dylib 0x900078b8 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x90007438 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c2258 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c69e4 CFRunLoopRunSpecific + 0x148
    4 com.apple.Foundation 0x90a2d160 -[NSRunLoop runMode:beforeDate:] + 0xac
    5 com.apple.Foundation 0x90a45d64 -[NSRunLoop run] + 0x4c
    6 com.apple.Foundation 0x90a9853c +[NSURLCache _diskCacheSyncLoop:] + 0xa8
    7 com.apple.Foundation 0x90a6a4b8 forkThreadForFunction + 0x6c
    8 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 5:
    0 libSystem.B.dylib 0x9000b46c select + 0xc
    1 com.apple.CoreFoundation 0x901c7668 __CFSocketManager + 0x1fc
    2 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 6:
    0 libSystem.B.dylib 0x90018e78 semaphoretimedwait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000ea14 pthread_condwait + 0x268
    2 ...ple.CoreServices.CarbonCore 0x902c5a50 MPWaitOnQueue + 0xe0
    3 com.apple.DesktopServices 0x90948e7c _ZN13TNodeSyncTask12SyncTaskProcEPv + 0x70
    4 ...ple.CoreServices.CarbonCore 0x902f6b90 PrivateMPEntryPoint + 0x4c
    5 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    Thread 7:
    0 libSystem.B.dylib 0x90017238 semaphorewait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000ea1c pthread_condwait + 0x270
    2 com.apple.Foundation 0x90a7c598 -[NSConditionLock lockWhenCondition:] + 0x44
    3 com.apple.AppKit 0x92e7a0e8 -[NSUIHeartBeat _heartBeatThread:] + 0x190
    4 com.apple.Foundation 0x90a6a4b8 forkThreadForFunction + 0x6c
    5 libSystem.B.dylib 0x90024990 pthreadbody + 0x28
    PPC Thread State:
    srr0: 0x908611f4 srr1: 0x0200f030 vrsave: 0x00000000
    cr: 0x48024442 xer: 0x00000000 lr: 0x90a98a70 ctr: 0x908611e0
    r0: 0x90a98a70 r1: 0xbfffea60 r2: 0x00000000 r3: 0x0aa53840
    r4: 0x908703c0 r5: 0x0aa50d50 r6: 0x0aa50d54 r7: 0x979ca65c
    r8: 0xa7992e0c r9: 0x017cb858 r10: 0x07cd6210 r11: 0xa0a20f7c
    r12: 0x00000000 r13: 0x00000000 r14: 0x00000000 r15: 0x00000001
    r16: 0x00000001 r17: 0x00000000 r18: 0xa01c1f20 r19: 0x00000000
    r20: 0x0000281b r21: 0xa0a2d104 r22: 0xa0a2d104 r23: 0xa0a2d104
    r24: 0xa0a2d104 r25: 0x0964b160 r26: 0xa0a2d104 r27: 0x0aa42710
    r28: 0x00000000 r29: 0x0aa53840 r30: 0x0aa42710 r31: 0x90a98a04
    Binary Images Description:
    0x1000 - 0xcdfff com.apple.Safari 1.3.2 (312.6) /Applications/Safari.app/Contents/MacOS/Safari
    0x17f4000 - 0x17f6fff com.apple.textencoding.unicode 1.6.4 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x4f93000 - 0x4f95fff com.apple.PDFImporter 1.3.1 (???) /System/Library/Components/PDFImporter.component/Contents/MacOS/PDFImporter
    0x510c000 - 0x51d6fff com.divxnetworks.DivXCodec 5.2.1 /Library/QuickTime/DivX 5.component/Contents/MacOS/DivX 5
    0x522b000 - 0x522efff libMPAEncode0.1.dylib /Library/Application Support/DivXNetworks/libMPAEncode0.1.dylib
    0x525f000 - 0x5290fff liblame3.92.dylib /Library/Application Support/DivXNetworks/liblame3.92.dylib
    0x52cd000 - 0x52dffff libdpv10.dylib /Library/Application Support/DivXNetworks/libdpv10.dylib
    0x5358000 - 0x53b8fff libdpus10.dylib /Library/Application Support/DivXNetworks/libdpus10.dylib
    0x65ba000 - 0x65befff com.apple.FolderActionsMenu 1.2.1 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x806c0000 - 0x806e9fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x80830000 - 0x8090efff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x80a50000 - 0x80ad4fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x81b30000 - 0x81b33fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x81cb0000 - 0x81cc0fff com.apple.Accelerate.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x84510000 - 0x84519fff libz.1.1.3.dylib /usr/lib/libz.1.1.3.dylib
    0x84530000 - 0x8455dfff libssl.0.9.dylib /usr/lib/libssl.0.9.dylib
    0x880f0000 - 0x88226fff com.apple.vImage 1.2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x8bea2000 - 0x8beaafff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x8c2bc000 - 0x8c2c8fff com.apple.agl 2.5 (AGL-2.5) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x8eea0000 - 0x8eeb6fff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x8fd50000 - 0x8fd50fff com.apple.Accelerate 1.0.3 (Accelerate 1.0.3) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x8fe00000 - 0x8fe4ffff dyld /usr/lib/dyld
    0x90000000 - 0x9014ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c0000 - 0x9026efff com.apple.CoreFoundation 6.3.9 (299.37) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x902b0000 - 0x90529fff com.apple.CoreServices.CarbonCore 10.3.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x905a0000 - 0x90610fff com.apple.framework.IOKit 1.3.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90640000 - 0x906c8fff com.apple.CoreServices.OSServices 3.0.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9071d000 - 0x9072afff com.apple.CommonPanels 1.2.1 (1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x90733000 - 0x90746fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x90810000 - 0x90810fff com.apple.ApplicationServices 1.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90860000 - 0x908cffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x908f5000 - 0x9090ffff com.apple.openscripting 1.2.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x90940000 - 0x909b3fff com.apple.DesktopServices 1.2.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90a02000 - 0x90a0dfff com.apple.securityhi 1.2 (90) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x90a20000 - 0x90b7bfff com.apple.Foundation 6.3.8 (500.61) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90c32000 - 0x90c4cfff libPDFRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x90c70000 - 0x90c8afff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90cb0000 - 0x90d12fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90d40000 - 0x90d40fff com.apple.Carbon 10.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90d50000 - 0x90d6bfff com.apple.SystemConfiguration 1.7.1 (???) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90d7c000 - 0x90d8ffff com.apple.speech.synthesis.framework 3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90db0000 - 0x90dbbfff com.apple.opengl 1.3.8 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90dd0000 - 0x90df0fff com.apple.DirectoryService.Framework 1.7.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90e13000 - 0x90e4bfff com.apple.LaunchServices 10.3.5 (98.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x90ec0000 - 0x90ec0fff com.apple.Cocoa 6.3 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x910e0000 - 0x91134fff com.apple.bom 1.2.8 (64.2) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91141000 - 0x91141fff com.apple.CoreServices 10.3 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91242000 - 0x9124bfff com.apple.DiskArbitration 2.0.5 /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbi tration
    0x912e0000 - 0x912f7fff com.apple.LangAnalysis 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x913a0000 - 0x9145ffff ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x915e0000 - 0x91699fff com.apple.QD 3.4.71 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x916f0000 - 0x91728fff com.apple.AE 1.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91760000 - 0x917f3fff com.apple.print.framework.PrintCore 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91836000 - 0x91846fff com.apple.ImageCapture 2.1.5 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91859000 - 0x91859fff com.apple.audio.units.AudioUnit 1.3.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9185b000 - 0x91871fff com.apple.QuartzCore 1.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x91970000 - 0x919befff com.apple.print.framework.Print 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91a40000 - 0x91ab3fff com.apple.NavigationServices 3.3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91afb000 - 0x91b18fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x91b30000 - 0x91b44fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91b60000 - 0x91b6bfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x92070000 - 0x92096fff com.apple.FindByContent 1.4 (1.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x92170000 - 0x92357fff com.apple.security 2.4 (179) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92700000 - 0x927a3fff libcrypto.0.9.dylib /usr/lib/libcrypto.0.9.dylib
    0x927f0000 - 0x92827fff com.apple.CFNetwork 1.2.2 (7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9283f000 - 0x92857fff com.apple.WebServices 1.1.1 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x92880000 - 0x92c05fff com.apple.HIToolbox 1.3.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92de0000 - 0x92e30fff com.apple.HIServices 1.4.1 (0.0.1d1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92e70000 - 0x9336ffff com.apple.AppKit 6.3.11 (743.43) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93680000 - 0x93958fff com.apple.CoreGraphics 1.203.30 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x939d0000 - 0x939d4fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x93a50000 - 0x93a64fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x93aa0000 - 0x93b87fff com.apple.AddressBook.framework 1.1.2 (321) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x940c0000 - 0x940fcfff com.apple.LDAPFramework 1.3.4 (37.4.2) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94580000 - 0x9458cfff com.apple.help 1.0.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x94596000 - 0x945a5fff libPSRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPSRIP.A.dylib
    0x945b0000 - 0x945b9fff libz.1.dylib /usr/lib/libz.1.dylib
    0x945c0000 - 0x945d0fff libsasl2.2.0.1.dylib /usr/lib/libsasl2.2.0.1.dylib
    0x94650000 - 0x946affff com.apple.SearchKit 1.0.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x946ed000 - 0x946fdfff com.apple.speech.recognition.framework 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x94720000 - 0x94721fff com.apple.securityfoundation 1.0 (6) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94800000 - 0x9488cfff com.apple.ink.framework 101.1.4 (55.12) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x948b0000 - 0x948e1fff com.apple.securityinterface 1.0 (39) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94c40000 - 0x94c4ffff com.apple.DSObjCWrappers.Framework 1.0.1 (1.0) /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94c57000 - 0x94d0ffff com.apple.audio.toolbox.AudioToolbox 1.3.4 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94e7f000 - 0x94f47fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x94fe0000 - 0x95078fff com.apple.WebKit 312.8 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x954c0000 - 0x95ac6fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95b20000 - 0x95df0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95f00000 - 0x95f20fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x961b0000 - 0x96292fff com.apple.JavaScriptCore 312.3.2 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x968d0000 - 0x969b2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x96a04000 - 0x96a6dfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96aa0000 - 0x96acefff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96b50000 - 0x96bdffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96c00000 - 0x96c67fff com.apple.audio.CoreAudio 2.1.3 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96cb0000 - 0x96d9efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x96de0000 - 0x96df0fff com.apple.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96ee0000 - 0x96ee8fff libbsm.dylib /usr/lib/libbsm.dylib
    0x96eec000 - 0x96f06fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x97345000 - 0x973b2fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x973c7000 - 0x9767bfff com.apple.QuickTime 7.1.2 /System/Library/Frameworks/QuickTime.framework/QuickTime
    0x97900000 - 0x97bf1fff com.apple.WebCore 315.14.5 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x97d72000 - 0x98748fff com.apple.QuickTimeComponents.component 7.1.2 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0xefbef000 - 0xefcd1fff libPSIKey.dylib /Library/Application Support/DivXNetworks/libPSIKey.dylib
    I don't know if all this will help... it's all Greek to me...

Maybe you are looking for

  • Itunes multiple sign ins on the same account

    I tried to add the app "where's my iphone" and when I tried to set up a Mobile Me account, my email address could not be verified.  What appears to have happened is that I have 2 accounts, one with my user name and the other with the same username an

  • Asset is getting capitalized at the time down payment to vendor for AssetPO

    Dear All, I am working on one scenario in which asset is getting capitalized at the time of down payment to vendor. I have created on Asset PO and i am doing downpayment to vendor against this Asset PO using F-48. Now it works fine and also this down

  • How to Play/Pause All for Adobe Air Application using AS3 in Flash CS4?

    I am new to Flash and I'm creating an educational application in AS3 in Flash CS4 for Adobe Air. I want to use buttons to play and pause all content (movieclips AND sound). I have created play and pause buttons that worked by switching the frame rate

  • Icloud smtp?

    What is it? smtp.icloud.com? Other? I was trying to setup my email in T'bird but everything I tried gave me the following error message. I think I have the wrong name or/and port settings but I am not sure. Thanks for any help.

  • Which driver do I need for Broadcom4311?

    Hello, I'm using a dell Inspirion E1505, with a Broadcom4311 chipset. I read in the wiki and apparently I have a few options: 1. ndiswrapper - will use as a last resort only, I prefer to find a more linux-y solution 2. BCM4312 driver which apparently