Setting up of excel, word, voice in the 9210 Commu...

i bought a Nokia 9210C. but excel, word, calculator and voice are no more available in my phone, how can i set up all the suite in my 9210C. thanks.

Hello,
Not quite sure that I undestand what you are asking for.
But all exchange ratio and exchange rates are set up in TC OBBS and OB08.
Best regards
Pernille Grudtvig Holst

Similar Messages

  • Excel/Word viewer for the Mac?

    Is there a free viewer for excel & word docs for the mac as I can't open my attachments in mail?

    I have a Macbook Pro Mac OS X (10.5.5) bought in July 2008 will open office work?
    Yes. NeoOffice, suggested by another poster, is pretty well the same, but may run more slowly: OpenOffice in its latest version runs directly on Leopard (rather than requiring X11 like its earlier versions). It will allow you to edit and save the documents in a MS-compatible format should you require this. Both programs are free.

  • Can you open a report in Excel/Word desktop instead of the web pugin?

    using run_report_object( and web.show_document,
    how or can you get a report to open in the desktop/full version of MS Excel/Word instead of the web plugin versions?
    I can get the browser to open a report in pdf with my desktop adobe reader, but not with an rtf or xml/delimited desformat.
    Currently I don't pass a mimetype when opening as a pdf, but I do pass one in the url when i am destypes of xml, delimited and rtf,
    as this is the only way i have found out how to open the reports in word/excel.
    I'm in the process of upgrading from forms 6 client/server to 10g developer suite, so this is my try with a web based system.
    Does anyone have any suggestions, or where I should look.
    Below I listed my code from a procedure.
    the first part of the procedure is alot of converting, but if you skip down to the part between the 2 sets of double lines this fairly standard.
    PACKAGE BODY pmc_lib IS
    -- Procedure to run the report.
    procedure run_reports(v_report_name in varchar2, -- Report Name with or w/o a path.
    v_commode in number default synchronous, -- commode
    v_execmode in number default runtime, -- execute mode
    v_file_sys in number default filesystem, -- dummy
    v_param_list in paramlist, -- parameter list
    v_show_modes in varchar2 default null) is -- used for testing,
    -- if set to anthing but null, the report properties will display
    -- on the screen through an alert prior to printing.
    v_errorcode number;
    v_errortext varchar2(600);
    v_initialized boolean := false;
    v_prop_reportserver varchar2(200);
    v_report_path varchar2(200);
    v_user varchar2(100);
    v_user_sessionid number;
    v_forms_version varchar2(100);
    v_default_report_server varchar2(200);
    v_default_server_domain_path varchar2(200);
    v_connect_string varchar2(3) := get_application_property(connect_string);
    v_user_name varchar2(35) := get_application_property(username);
    report_id report_object;
    reportserverjob varchar2(100);
    v_jobid varchar2(100);
    rep_status varchar2(100);
    v_url varchar2(500);
    v_url2 varchar2(500);
    v_parameter_value varchar2(100);
    v_destype_param_value varchar2(100) := null;
    v_desformat_param_value varchar2(100) := null;
    v_desname_param_value varchar2(100) := null;
    v_value_n number := 0;
    v_param_type number := text_parameter;
    v_prop_execmode number;
    v_prop_commode number;
    v_prop_destype number;
    v_prop_filename varchar2(200);
    v_prop_source_block varchar2(200) := null;
    v_prop_query_name varchar2(200) := null;
    v_prop_desname varchar2(200) := null;
    v_prop_desformat varchar2(200) := null;
    v_prop_reportserver varchar2(200) := null;
    v_prop_other varchar2(200) := null;
    v_mimetype varchar2(200) := null;
    v_selected_mimetype varchar2(200) := null;
    report_not_generated exception;
    report_id_not_found exception;
    BEGIN
    v_forms_version := get_application_property(version);
    v_prop_reportserver := get_report_object_property('report1', report_server);
    v_report_path := null;
    v_user := v_user_name || '/' ||
    get_application_property(password) || '@' ||
    v_connect_string;
    if v_connect_string = 'NNN' then
    v_default_server_domain_path := 'pmcoracapp01.aapmc.com/reports/rwservlet';
    v_default_report_server := 'rep_pmcoracapp01_frhome1';
    else
    v_default_server_domain_path := 'oradevsrv.aapmc.com/reports/rwservlet';
    v_default_report_server := 'rep_oradevsrv_frhome1';
    end if;
    v_initialized := true;
    -- Check to see what version of forms is running.
    if substr(v_forms_version, 1, 1) <> '6' then
    -- Check to see if WEB version is running
    -- This may be an unnecessary check.
    if (get_application_property(user_interface) = 'WEB') then
    report_id := find_report_object('report1');
    -- id_null won't work on a report_id in Version 6, may put back in 10g once version 6 is gone completly
    -- if id_null(report_id) then
    -- raise report_id_not_found;
    -- end if;
    -- Because of Convertions from old system the following are needed.
    -- 1) If 'execmode' is runtime, then change it to batch.
    if v_execmode = runtime then
         v_prop_execmode := batch;
    else
         v_prop_execmode := v_execmode;
    end if;
    -- 2) If Report name has an attached path, then remove it.
    v_value_n := instr(lower(v_report_name), 'k:\pmc\new\');
    if v_value_n = 0 then
         v_prop_filename := v_report_name;
    else
         v_prop_filename := substr(v_report_name, v_value_n + 11);
    end if;
    -- From looking at the FORMS, 'destype' parameter is always passed in from the FORM.
    -- It is either 'preview' or 'file'.
    -- This is here for the converstion from Forms 6 to 10g.
    -- If for some reason destype has not been passed in as a parameter, you will get a FORM error,
    -- saying the parameter does not exists.
    begin
    -- 3) If 'destype' is one of the following, then change it to cache.
    get_parameter_attr(v_param_list, 'destype', v_param_type, v_destype_param_value);
    if lower(nvl(v_destype_param_value, 'null')) in ('preview', 'file', 'null') then
    v_prop_destype := cache;
    -- 3a) If 'destype' was = 'file' then check the 'desformat' and 'desname'.
    if lower(nvl(v_destype_param_value, 'null')) = 'file' then
    -- 3b) Get 'desformat' value
    get_parameter_attr(v_param_list, 'desformat', v_param_type, v_desformat_param_value);
    -- 'delimited' was not working, so change all 'delimited' to 'delimiteddata'.
    if lower(nvl(v_desformat_param_value, 'null')) = 'delimited' then
         v_desformat_param_value := 'delimiteddata';
    end if;
    -- 3c) If 'desformat' is NOT one of the following, then change it to pdf.
    if lower(nvl(v_desformat_param_value, 'null')) not in ('pdf', 'xml', 'rtf', 'delimiteddata') then
    v_prop_desformat := 'pdf';
    else
    v_prop_desformat := lower(v_desformat_param_value);
    end if;
    -- 4) Get 'desname' property.
    get_parameter_attr(v_param_list, 'desname', v_param_type, v_desname_param_value);
    v_prop_desname := lower(v_desname_param_value);
    end if;
    else
    v_prop_destype := lower(v_destype_param_value);
    end if;
    exception
    when others then
    null;
    end;
    -- If a desformat is rtf, xml, or delimited then get a mimetype to pass to the url
    if lower(v_prop_desformat) = 'rtf' then
    v_mimetype := '&mimetype=application/msword';
    elsif lower(v_prop_desformat) = 'xml' then
    v_mimetype := '&mimetype=application/vnd.ms-excel';
    elsif lower(v_prop_desformat) = 'delimiteddata' then
    v_mimetype := '&mimetype=application/vnd.ms-excel';
    end if;
    -- 6) If the Following are not set within the Report Object then
    -- set them to the following defaults.
    -- These are al required to be set for the Report Object to Function.
    -- These are the defaults for AAPMC.
    v_prop_execmode := nvl(v_prop_execmode, batch);
    v_prop_commode := nvl(v_prop_commode, synchronous);
    v_prop_destype := nvl(v_prop_destype, cache);
    v_prop_desformat := nvl(v_prop_desformat, 'pdf');
    v_prop_reportserver := nvl(v_prop_reportserver, v_default_report_server);
    -- Set All Report_Object Properties
    set_report_object_property(report_id, report_execution_mode, v_prop_execmode);
    set_report_object_property(report_id, report_comm_mode, v_commode);
    set_report_object_property(report_id, report_destype, v_prop_destype);
    set_report_object_property(report_id, report_filename, v_prop_filename);
    set_report_object_property(report_id, report_source_block, v_prop_source_block);
    set_report_object_property(report_id, report_query_name, v_prop_query_name);
    set_report_object_property(report_id, report_desname, v_prop_desname);
    set_report_object_property(report_id, report_desformat, v_prop_desformat);
    set_report_object_property(report_id, report_server, v_prop_reportserver);
    set_report_object_property(report_id, report_other, v_prop_other);
    -- Run Report_Object
    reportserverjob := run_report_object(report_id, v_param_list);
    v_jobid := substr(reportserverjob, length(v_prop_reportserver) + 2, length(reportserverjob));
    -- If Report Status is not 'FINISHED', then loop till it is.
    if reportserverjob is not null then
    rep_status := report_object_status(reportserverjob);
    while rep_status in ('RUNNING', 'OPENING_REPORT', 'ENQUEUED') loop
    rep_status := report_object_status(reportserverjob);
    end loop;
    if rep_status <> 'FINISHED' then
    raise report_not_generated;
    end if;
    -- Create 1st part of url.
    v_url := 'http://' || v_default_server_domain_path || '/getjobid' || v_jobid || '?server=' || v_prop_reportserver;
    -- Check for mimetype.
    if v_mimetype is not null then
    v_url := v_url || v_mimetype;
    end if;
    -- Final part of url.
    v_url2 := 'javascript:window.open("' || v_url || '", "", "fullscreen=no, titlebar=no, location=no, toolbar=no, menubar=no, status=no, resizable=yes"); self.close()';
    -- This is the built-in that calls a new browser window
    web.show_document(v_url2,'_blank');
    else
    raise report_not_generated;
    end if;
    end if;
    -- Destroy the parameter list.
    destroy_parameter_list(v_param_list);
    else
    -- This section if for Client Server, Version 6 of forms.
    -- It will do the same as before the conversion.
    -- It is only used before the complete conversion.
    if v_report_name is null then
    return;
    end if;
    v_value_n := instr(v_report_name, 'k:\pmc\new\');
    if v_value_n = 0 then
         v_prop_filename := 'k:\pmc\new\' || v_report_name;
    else
    v_prop_filename := v_report_name;
    end if;
    run_product(reports,
    v_prop_filename,
    v_commode,
    v_execmode,
    filesystem,
    v_param_list,
    null);
    end if;      
    -- create history record of the report being run
    insert into pmc_report_history values(
    s_pmc_report_history.nextval,
    v_prop_filename,
    v_user_name,
    sysdate,
    v_forms_version,
    v_jobid,
    v_destype_param_value,
    v_desformat_param_value,
    v_desname_param_value,
    v_prop_destype,
    v_prop_desformat,
    v_prop_desname,
    v_mimetype,
    v_window_open_params);
    commit;
    exception
    when report_id_not_found then
    show_user_alert('ERROR: Cannot Find Report Object!', null);
    when report_not_generated then
    show_user_alert('ERROR: Report Not Generated!', null);
    when others then
    v_errorcode := SQLCODE;
    v_errortext := SQLERRM;
    show_user_alert('ERROR : ' || v_errorcode || ' = ' || v_errortext, null);
    end;
    end;

    What you could try is downloading the report to the client pc using WEBUTIL_FILETRANSFER.URL_TO_CLIENT, then open the locally save file using something like:
    CLIENT_HOST('cmd /c rundll32.exe url.dll,FileProtocolHandler "localfilename"');

  • Will I loose apps (excel, word,etc...)when I delete the orig admin. on a used Mac pro

    I purchased a used mac book pro late 2009 model and wanted to know if I will delete the applications(excel,word,etc...) if and when I delete the original administrator.  I was able to create a new administrator ID, so I want to delete the previous admin.   Also what else would you reccommend  in setting up the Mac book to get the old owner info off the system, is there a way/ how do i change the system password, etc...? Obviously I am new to macs, any and all info would be great!  Thanks for the help!!!

    Did the seller give you the License keys and the DVD disc, or discs, to re-install and re-activate those MS Office programs? If not then you should delete them as they are not yours and he sold you pirated software.
    Also if that 2009 Mac came with Mac OS X Lion installed when you got it that is another piece of pirated software and you will have no way of Reinstalling that version of OS X without the sellers Apple ID and Password.
    Also did he supply the Original System Discs, which there should be 2, with the system? If not you will need to contact Apple and get a Set of Replacement Discs for that system for a fee of around $40. Then wipe the drive, reinstall the version of OS X that originally came with that system. Then get whatever discs or downloads are needed to upgrade that system to Snow Leopard 10.6.8 and then buy Lion or Mt Lion from the Mac App store using your own Apple ID.
    Or you could just return it to the person that sold it to you and get your money back.
    Caveat Emptor.

  • How to set tabstops in MS Word using the LabVIEW Report Generation Toolkit

    Using the Report Generation Toolkit of LabVIEW, I need to set multiple tabstops that very in distance in MS Word.  I also have different sets of tabstops that I use and re-use at different times in the same report.  Is there a way to set the tabstops under program control?  I searched through the various VIs and found that there is a property ("Tabstops", "Word.Tabstops") in the _ParagraphFormat property node that refers to tabstops.  I found it in the Word Format Paragraph (adv) VI.  Unfortunately, I could not determine how to use it.  Any suggestions?  Is this an operational element?

    Bluebell,
    Sounds like you've already done some fantastic work to expose the various properties and methods of MS Word. It took me about 20 min before I could find the specific property that you were talking about! I found it under Word.Document>>Paragraphs>>Tabstops>>Add. There is a position, alignment and leader parameter that you can set from this property node. I've found that the best way to discover what these parameters do is to simply experiment. You could also try using the macro recorder in Word, perform the specific task, and then look at the code generated. I'm guessing that position sets the position of the tabstop itself. It sounds like your application is really specific. For such a specific task, I think I'd write a macro and call that macro from LabVIEW.
    Chris Cilino
    National Instruments
    LabVIEW Product Marketing Manager
    Certified LabVIEW Architect

  • My hard drive failed. My applications were on the drive including Excel, Word, and Powerpoint. Apple told me I could pull everything from the failed drive. I tried that but the drive is bad so I can't get to anything. Do you think Apple will reinstall?

    My hard drive failed. My applications were on the drive including Excel, Word, and Powerpoint. Apple told me I could pull everything from the failed drive. I tried that but the drive is bad so I can't get to anything. The Office package was installed/included when I purchased the Mac. Does anyone think Apple will provide me with the Office package? Thank you!

    Thank you everyone. I apologize to confusing all but I am up to date and running OS X 10.8.2.  It's possible I purchased the key for Office but I don't think so although it was 3-4 years ago. I guess I will stop in the Apple Store and just ask. I may just buy the new bundle anyway to get the most updated.
    I have read there are issues with the MS Office bundle running on our latest OS, is that true?
    Thank you all!!! You've been great!

  • Excel 2010: I get the error message "This file can't be previewed because of an error in the Microsoft Excel previewer." even though Advanced Properties is set to Save Thumbnails for all Excel Documents.

    Excel 2010: I get the error message "This file can't be previewed because of an error in the Microsoft Excel previewer." even though Advanced Properties is set to Save Thumbnails for all Excel Documents and I've run Repair on Microsoft Office.
     I don't know what else to try.
    Any help would be appreciated. Thanks.

    A hotfix request has already been submitted for this issue and we have also documented it here
    http://support.microsoft.com/kb/983097
    Thanks.
    Tony Chen
    TechNet Community Support

  • Auto-Capitalization: How can I set Pages v5.01 to auto-capitalize the first letter of the first word in a sentence and to automatically change lower case "i" to "I" appropriately. I'm unable to find a menu that offers me these.

    Auto-Capitalization: How can I set Pages v5.01 to auto-capitalize the first letter of the first word in a sentence and to automatically change lower case "i" to "I" appropriately. I'm unable to find a menu that offers me these.

    Gavin Lawrie wrote:
    Once it had been established that the iWork rewrite had resulted in some features being lost and others broken, and once Apple had acknowledged the concerns* and suggested they are working on fixes**, I'm not sure what else there is to achieve.
    You are writing that in the perspective of having read about it here already. Repeated often enough that you encountered it somewhere in the posts.
    Users are flooding in here and don't know any of this. Of course we have to repeat everything endlessly.
    Because I like to give precise, understandable and workable answers to repeated questions, and Apple doesn't allow sticky posts here, I created a separate forum which users can consult to look up real answers, and contribute for themselves if they have something valuable to add:
    http://www.freeforum101.com/iworktipsntrick/
    There is a section purely devoted to Pages 5. Add whatever answers you feel will lighten the problems of Apple's 'upgrades'.
    Peter
    * Where have they acknowledged anything?
    ** They have barely anything listed, compared to the massive list of deleted features, and nothing but an extraordinarily long time frame considering they created the problems here and now. Apple has not said they will do anything at all about fixing the real issues, the biggest of which is that the new iWork apps break virtually all the work of existing users.

  • Linking Excel to Word - Word doc updates the numbers in a table but the format (font colours) do not update

    I am using Office 2010. I have many graphs and linked tables to a master word document from Excel. The tables contain percentages and are formatted red if under -2.5%, yellow if between -2.5% and +2.5% and green if over +2.5%. The colours are correct
    in Excel but when I refresh the word document, the numbers update but the font colours do not. The purpose of linking was to save time but if the colours do not update then the link is pointless. Is there any way to ensure the colours update as well as the
    values?

    Hi,
    In regarding of the issue, I have a couple of questions:
    Do you mind telling me how do you copy/link between Excel and Word?
    Where did you store the Word and Excel file? Both of local disk or network drive, even website?
    Did you using conditional formatting to display/format percentages?
    Based on my tested, please try the following steps, it would be update all the information after the source was changed.
    Select the table/chart in Excel> Open word >Copy>Paste>Choose Link & Keep Source Formatting.(See image 1)
    If we changed the source data in Excel, then right click the table in Word> Choose update Link. (See image 2)
    Then the data, format, font and color all will be updated.
    Hope this should help you.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in
    Office programs.

  • When I open my Excel/Word 2004, the 'Application Quit Unexpectedly' message appears.  This just happened with Viber also.  Help!  I don't know that much about computer problems.

    When I open my Excel/Word 2004, the 'Application Quit Unexpectedly' message appears and I cannot relaunch.
    This just happened for Viber also.
    I am not to knowledgeable on technical issues.
    Please help!
    Thank you.

    Thank you for your reply.  Here is the full copy:
    Process:         Microsoft Excel [119]
    Path:            /Users/susanslater/Desktop/Microsoft Office 2004/Microsoft Excel
    Identifier:      com.microsoft.Excel
    Version:         090512 (11.5.5)
    Code Type:       PPC (Translated)
    Parent Process:  launchd [63]
    Date/Time:       2009-11-01 19:46:37.528 +0900
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  DE40358D-E5BE-46DF-8382-5E64FE348B72
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  0
    Thread 0 Crashed:
    0   translate                               0xb80bcd58 0xb8000000 + 773464
    1   translate                               0xb80b7007 0xb8000000 + 749575
    2   translate                               0xb80d49c0 0xb8000000 + 870848
    3   translate                               0xb813ce79 spin_lock_wrapper + 1981
    4   translate                               0xb8011b64 0xb8000000 + 72548
    Thread 1:
    0   ???                                     0x800bc286 0 + 2148254342
    1   ???                                     0x800c3a7c 0 + 2148285052
    2   translate                               0xb818b6ea CallPPCFunctionAtAddressInt + 202886
    3   ???                                     0x800ed155 0 + 2148454741
    4   ???                                     0x800ed012 0 + 2148454418
    Thread 2:
    0   translate                               0xb81529ef spin_lock_wrapper + 90931
    1   translate                               0xb8183633 CallPPCFunctionAtAddressInt + 169935
    2   translate                               0xb81861e2 CallPPCFunctionAtAddressInt + 181118
    3   translate                               0xb80dfb0b 0xb8000000 + 916235
    4   ???                                     0x812d8b96 0 + 2167245718
    Thread 3:
    0   translate                               0xb8152b6b spin_lock_wrapper + 91311
    1   translate                               0xb817b608 CallPPCFunctionAtAddressInt + 137124
    2   translate                               0xb80bdb8b 0xb8000000 + 777099
    3   translate                               0xb80b7007 0xb8000000 + 749575
    4   translate                               0xb80d49c0 0xb8000000 + 870848
    5   translate                               0xb813d75f spin_lock_wrapper + 4259
    6   translate                               0xb8011b64 0xb8000000 + 72548
    Thread 4:
    0   translate                               0xb8152c24 spin_lock_wrapper + 91496
    1   translate                               0xb817b31e CallPPCFunctionAtAddressInt + 136378
    2   translate                               0xb80bdb8b 0xb8000000 + 777099
    3   translate                               0xb80b7007 0xb8000000 + 749575
    4   translate                               0xb80d49c0 0xb8000000 + 870848
    5   translate                               0xb813ce79 spin_lock_wrapper + 1981
    6   translate                               0xb8011b64 0xb8000000 + 72548
    Thread 5:
    0   translate                               0xb8152863 spin_lock_wrapper + 90535
    1   translate                               0xb816e79d CallPPCFunctionAtAddressInt + 84281
    2   translate                               0xb80bdb8b 0xb8000000 + 777099
    3   translate                               0xb80b7007 0xb8000000 + 749575
    4   translate                               0xb80d49c0 0xb8000000 + 870848
    5   translate                               0xb813ce79 spin_lock_wrapper + 1981
    6   translate                               0xb8011b64 0xb8000000 + 72548
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0xb80bcd30  ecx: 0x00000000  edx: 0x0000001a
      edi: 0x00000000  esi: 0x80303820  ebp: 0xb7fffa08  esp: 0xb7fff9d0
       ss: 0x0000001f  efl: 0x00010202  eip: 0xb80bcd58   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
    0xb8000000 - 0xb81d7fe7  translate ??? (???) /usr/libexec/oah/translate
    Translated Code Information:
    Rosetta Version:  21.03
    Args:            /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMAp p /Users/susanslater/Desktop/Microsoft Office 2004/Microsoft Excel
    Exception: EXC_BAD_ACCESS (0x0001)
    Thread 0: (0xb011cd64, 0xb8152b6b)
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp :   + 0
    0x005e0934: /Users/susanslater/Desktop/Microsoft Office 2004/Office/ShMem.bundle/Contents/MacOS/ShMem : _FWaitForConnection + 48
    0x848dcbc4: No symbol
    0x8483d558: No symbol
    0x8483d73c: No symbol
    0x903bb42c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _PrivateMPEntryPoint + 80
    0x903bb42c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _PrivateMPEntryPoint + 80
    0x945841d4: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    PPC Thread State
    srr0: 0x00000000          srr1: 0x00000000                                 vrsave: 0x00000000
    cr:  0xXXXXXXXX                    xer: 0x00000000                     lr: 0x9459b7d8                    ctr: 0x9459b7c4
    r00: 0x00000194           r01: 0xf01019d0           r02: 0x00000000           r03: 0x00000013
    r04: 0xf0101a68           r05: 0xf0101a60           r06: 0xf0101d40           r07: 0x00000004
    r08: 0x00000000           r09: 0x100b2fd0           r10: 0x00000000           r11: 0x0064e110
    r12: 0x9459b7c4           r13: 0x00000000           r14: 0x00000000           r15: 0x00000000
    r16: 0x00000000           r17: 0x00000000           r18: 0x00000000           r19: 0x00000000
    r20: 0x00000000           r21: 0x00000000           r22: 0x00000000           r23: 0x00000000
    r24: 0x00000000           r25: 0x00000000           r26: 0x00000000           r27: 0x00000000
    r28: 0x00000000           r29: 0x009f8e00           r30: 0xf0101b28           r31: 0xf0101b28
    Thread 1: (0xb009a83c, 0xb81529ef)
    0x0082c800: No symbol
    0x00644204: /Users/susanslater/Desktop/Microsoft Office 2004/Office/ShMem.bundle/Contents/MacOS/ShMem : _MerpUnregisterCFMFragment + 3156
    0x945841d4: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp :   + 0
    PPC Thread State
    srr0: 0x00000000          srr1: 0x00000000                                 vrsave: 0x00000000
    cr:  0xXXXXXXXX                    xer: 0x00000000                     lr: 0x944fa120                    ctr: 0x944f31f0
    r00: 0xffffffe1           r01: 0xf0080d60           r02: 0x00000001           r03: 0xf0080e4c
    r04: 0x00000102           r05: 0x00000000           r06: 0x00000054           r07: 0x00003403
    r08: 0x000003e8           r09: 0x00000000           r10: 0x000eb010           r11: 0xa076a68c
    r12: 0x944f31f0           r13: 0x00000000           r14: 0x00000000           r15: 0x00000000
    r16: 0x00000000           r17: 0x00000000           r18: 0x00000000           r19: 0x00000000
    r20: 0x00000000           r21: 0x00000000           r22: 0x00000000           r23: 0x00000000
    r24: 0xf0080e4c           r25: 0x00000054           r26: 0x00003403           r27: 0x000003e8
    r28: 0x00000000           r29: 0x00000102           r30: 0x00000102           r31: 0x0064efb0
    Thread 2: (0xb0220d64, 0xb8152863)
    0x903cf818: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40
    0x8483dca8: No symbol
    0x903bb42c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _PrivateMPEntryPoint + 80
    0x903bb42c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _PrivateMPEntryPoint + 80
    0x945841d4: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp :   + 0
    PPC Thread State
    srr0: 0x00000000          srr1: 0x00000000                                 vrsave: 0x00000000
    cr:  0xXXXXXXXX                    xer: 0x00000000                     lr: 0x903cf85c                    ctr: 0x944f3260
    r00: 0xffffffda           r01: 0xf0203d60           r02: 0x0013bda0           r03: 0x00007803
    r04: 0x0000003c           r05: 0x00000000           r06: 0x00000000           r07: 0xf0203c60
    r08: 0x00000010           r09: 0x000f4240           r10: 0xffffff3f           r11: 0xa076aa78
    r12: 0x944f3260           r13: 0x00000000           r14: 0x00000000           r15: 0x00000000
    r16: 0x00000000           r17: 0x00000000           r18: 0x00000000           r19: 0x00000000
    r20: 0x00000000           r21: 0x00000000           r22: 0x00000000           r23: 0x00000000
    r24: 0x00000000           r25: 0x00000000           r26: 0x00000000           r27: 0x00000000
    r28: 0x00000000           r29: 0x0000ea60           r30: 0x00000000           r31: 0x903cf7fc
    Thread 3: Crashed (0xb7fff9d0, 0xb80bcd58)
    0x85181738: No symbol
    0x851816a0: No symbol
    0x85181490: No symbol
    0x847438d4: No symbol
    0x92fadda0: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFArrayApplyFunction + 352
    0x8475675c: No symbol
    0x84756810: No symbol
    0x9577dc4c: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox : DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1488
    0x9577cde4: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox : SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 468
    0x9577cc00: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox : _SendEventToEventTargetWithOptions + 56
    0x95843b48: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox : DockCallback(unsigned long, unsigned int, void*, void*) + 1648
    0x9697250c: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics : _notifyDatagramHandler + 476
    0x9693410c: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics : _CGSDispatchDatagramsFromStream + 740
    0x969339a8: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics : _snarfEvents + 292
    0x96c2cbd0: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics : _CGSGetNextEventRecordInternal + 152
    0x969337e4: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics : _CGEventCreateNextEvent + 28
    0x9577f408: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox : PullEventsFromWindowServerOnConnection(unsigned int, unsigned char) + 88
    0x957aa180: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox : _PullEventsFromWindowServer + 24
    0x957aa0d0: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox : _FlushSpecificEventsFromQueue + 72
    0x83f6ac5c: No symbol
    0x83f6ab90: No symbol
    0x83f7a958: No symbol
    0x83f79fe8: No symbol
    0x83f79f60: No symbol
    0x83f79d14: No symbol
    0x903f08d4: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _ReleaseClosure + 896
    0x903f052c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _TerminateApplication + 88
    0x94505acc: /usr/lib/libSystem.B.dylib : ___cxa_finalize + 240
    0x945059a8: /usr/lib/libSystem.B.dylib : _exit + 36
    0x924edab8: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices : _PlotIconRef + 0
    0x84aab310: No symbol
    0x84aab2e0: No symbol
    0x8497c154: No symbol
    0x8519a674: No symbol
    PPC Thread State
    srr0: 0x00000000          srr1: 0x00000000                                 vrsave: 0x00000000
    cr:  0xXXXXXXXX                    xer: 0x20000000                     lr: 0x85181738                    ctr: 0x94696df0
    r00: 0x85181738           r01: 0xbfff9a30           r02: 0x00422000           r03: 0x0048e0e4
    r04: 0x0db48ba0           r05: 0xfffffffe           r06: 0x00000000           r07: 0x00000000
    r08: 0x00000000           r09: 0x0db48cd6           r10: 0x00000001           r11: 0x00000048
    r12: 0xa07a5b24           r13: 0x00000000           r14: 0x00000000           r15: 0x00000000
    r16: 0x00000000           r17: 0xa00523e8           r18: 0xa07659f0           r19: 0xa07659f0
    r20: 0xa07a59f0           r21: 0xbfffa56c           r22: 0xbfffa4b4           r23: 0xbfffa4ac
    r24: 0x00000000           r25: 0xbfff9d58           r26: 0x00000000           r27: 0x00000003
    r28: 0x000fd26c           r29: 0x001aad30           r30: 0x004d2634           r31: 0x0048e0ec
    Thread 4: (0xb019ed38, 0xb8152c24)
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp :   + 0
    0x848dcd3c: No symbol
    0x8483d96c: No symbol
    0x8483db04: No symbol
    0x903bb42c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _PrivateMPEntryPoint + 80
    0x903bb42c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _PrivateMPEntryPoint + 80
    0x945841d4: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    PPC Thread State
    srr0: 0x00000000          srr1: 0x00000000                                 vrsave: 0x00000000
    cr:  0xXXXXXXXX                    xer: 0x00000000                     lr: 0x005e0af0                    ctr: 0x94583588
    r00: 0x00000193           r01: 0xf0182c20           r02: 0x00000000           r03: 0x00000014
    r04: 0xf0182d18           r05: 0x00000098           r06: 0x00000000           r07: 0x00000000
    r08: 0x00000000           r09: 0x002c5340           r10: 0x000eb020           r11: 0x0064e124
    r12: 0x94583588           r13: 0x00000000           r14: 0x00000000           r15: 0x00000000
    r16: 0x00000000           r17: 0x00000000           r18: 0x00000000           r19: 0x00000000
    r20: 0x00000000           r21: 0x00000000           r22: 0x00000000           r23: 0x00000000
    r24: 0x00000000           r25: 0x00000000           r26: 0x00000000           r27: 0x00000000
    r28: 0x00000000           r29: 0xf0182d18           r30: 0xf0182d04           r31: 0xf0182d04
    Regarding your suggestion to try the free LibreOffice, at the moment I don't need this, because I have downloaded a one-month trial Japanese Microsoft Office 2011 and can open my current files with that, although I do not want to revise any of my files until either this problem is solved, or I purchase a new MS Office.
    Unfortunately there is not many MS Office software in English available here in Japan.  I spoke to Microsoft Japan and even though they sell software, they do not sell any English verions of MS Office.  Incredible, considering that the company itself is located in the US.  They suggested I buy it from Amazon Japan, however Amazon do not have any available at this time and do not know if they will in the future.
    Anyway, I have found a company which sells the downloaded English version (no disk).  The software is Microsoft Office for Mac Home and Student 2011.  I have not purchased it yet.  It would take too long and the postage charges would be too high to purchase it from the US.
    Hoping you have some good ideas.
    Best regards,
    Susan

  • I need help to decide which macbook pro is best for photo editing, editing movies and doing all the rest too like excel, word etc. 13"

    I need help to decide which macbook pro is best for photo editing, editing movies and doing all the rest too like  microsoft office products ...excel, word etc.  I am new to the apple world and have liked the idea of the MAC Book Pro 13" but really dont know if this is good enough or if the computer will soon crash?
    13-inch: 2.6GHz
    with Retina display
    Specifications
    2.6GHz dual-core Intel Core i5
    Turbo Boost up to 3.1GHz
    8GB 1600MHz memory
    512GB PCIe-based flash storage1
    Intel Iris Graphics
    Built-in battery (9 hours)2

    That's a fine machine and, with 8GB of RAM and 512GB flash storage should serve you well for light video/photo editing as well as for 'normal' usage. And it should last you for years to come.
    Good luck in making your decision!!
    Clinton

  • HT4528 I was looking at the setting and turn on the phone setting the a voice says the fuction and i cant get back to it to turn it off. i cant scroll

    I was looking at the settings and turn on the phone setting where a voice says the fuction and i cant get back to it to turn it off. i cant scroll to get back to the setting to turn it off.

    1. Triple-click the line below to select it:
    ~/.Trash
    2. Right-click or control-click the highlighted line and select
    Services ▹ Show Info
    from the contextual menu.* An Info dialog should open.
    3. The dialog should show "You can read and write" in the Sharing & Permissions section. If that's not what it shows, click the padlock icon in the lower right corner of the window and enter your password when prompted. Use the plus- and minus-sign buttons to give yourself Read & Write access and "everyone" No Access. Delete any other entries in the access list.
    4. In the General section, uncheck the box marked Locked if it's checked.
    5. From the action menu (gear icon) at the bottom of the dialog, select Apply to enclosed items and confirm.
    6. Close the Info window and test.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard (command-C). Open a TextEdit window and paste into it (command-V). Select the line you just pasted and continue as above.
    Remove the Norton/Symantec product by following the instructions on either of these pages:
    Uninstalling your Norton product for Mac
    Removing Symantec programs for Macintosh
    If you have a different version of the product, the procedure may be different. Back up all data before making any changes.
    From the Safari menu bar, select
    Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data
    and confirm. Consider installing an ad-blocker and/or a selective cookie block such as the "Ghostery" Safari extension.

  • How to make Excel, Word, Powerpoint the Default programs?

    Hey guys,
    Just got my new MBP, and I need to know how to make Excel, Word, Powerpoint the default programs when opening one of their files? Currently, the trial version of Iwork opens the programs which drives me crazy.....
    So, for example, for an Excel file, I want Excel to open it, NOT Numbers......etc....
    Thanks In advance.
    JW

    Select a file of that type in the Finder, choose Get Info from the File menu, change the Open With entry for it to the desired application, click on Change All, and confirm the action.
    (47808)

  • Reading the excel,word,pdf&ppt files using java

    Hi, I am looking for a java program to read the excel, word, pdf & ppt files...I would like to read files based on keywords match criteria... I would appreciate any help on this...

    Hi,
    Look at:
    http://jakarta.apache.org/poi/index.html
    There you'll find the lib:s you need.
    Good luck,
    Magnus

  • Customise the ribbon in excel, word etc

    can we customise the ribbon in excel, word etc like in computers other than mac running on ms office with differnet colour systems etc

    What ribbon? Do you mean print in color? Be clear.

Maybe you are looking for

  • Trouble using a function in the where clause

    Hello, I am using a function found at ask.tom.oracle.com which converts a long data type to a character. The function is returning an error when it is placed in the where clause. The sql statement , error message and the function from ask tom are sho

  • DBCA Does Not Display ASM Disk Groups In 11.2.0.4

    DBCA trying to create a database with a different user oracle  than grid user. installed Grid infrastructure with user grid, and I was trying to create a database with user oracle (who’s the owner of oracle rdbms). But during this installation I wasn

  • I am unable to get itunes to run on my powerbook g4. Please help!

    My sister gave me her old powerbook g4. She erased the hard drive and relaoded the software. I cant get itunes to open or run. It said i needed quicktime so I downlaoded it from the apple site but it still will not run. Am I doing something wrong? Is

  • Strange email effect...help?

    Can someone tell me why if I scroll down to the bottom of a long email message, then simply move to the next [long] email message (without scrolling back to the top of the message), I find myself far down the next message's body rather than at the st

  • Pricing type doubts

    Hi Gurus, I am unsure exactly how is pricing type configured. 1. I know it is set in copy controls but i need to confirm is it also assigned to a pricing procedure. Can i know which setting is this referred to in the pricing procedure? So far, i have