Webforms ole with ms word

hi there,
having problems with webforms code that in 6i client server would launch ms word (no problem there) and show a templates dialog box.
errors thrown from webforms are:
WUO-714: Unable to get the last OLE Error details;
Exception
null
WUO-705: Unable to invoke Method: Show; Exception
com.jacob.com.ComFailException:
VariantChangeType failed
the code is as follows (no idea what argument '79' represents):
Procedure Open_Word_Dialog IS
app client_OLE2.OBJ_TYPE;
     dialogs client_OLE2.OBJ_TYPE;
     dialog client_OLE2.OBJ_TYPE;
     doc client_OLE2.OBJ_TYPE;
arglist      client_OLE2.LIST_TYPE;
     l_type_num client_OLE2.OBJ_TYPE;
Begin
app := client_OLE2.CREATE_OBJ('WORD.Application');
CLIENT_OLE2.SET_PROPERTY(app,'Visible',1);
client_OLE2.INVOKE(app,'Activate');
dialogs := client_ole2.get_obj_property(app, 'Dialogs');
arglist:= client_OLE2.CREATE_ARGLIST;
client_OLE2.ADD_ARG(arglist, 79);
dialog := client_ole2.invoke_obj(dialogs, 'Item', arglist);
client_OLE2.DESTROY_ARGLIST(arglist);
l_type_num := client_ole2.Invoke_obj(dialog, 'Show');
doc := client_ole2.get_obj_property(app, 'ActiveDocument');
client_ole2.Release_OBJ(doc);
client_ole2.Release_OBJ(dialog);
client_ole2.Release_OBJ(dialogs);
     client_ole2.Release_OBJ(app);     
Exception
     When others then
null;
End;
end;
any assistance would be most appreciated.
thanks in advance.

I've finally had a chance to run your code. Oddly enough, it runs fine for me (most likely a JACOB versioning quirk.) Upon closer inspection, I find that the Show method of a Dialog object returns a Long, not an object, suggesting that the problem is an incompatible return value type. Try declaring I_type_num_client as type NUMBER, rather than CLIENT_OLE2.OBJ_TYPE -- I'm guessing that should fix your error.
If you're wondering where Word's objects, methods, arguments and argument types are documented, I use VBA's Object Browser for this, and simply couldn't manage without it. Have a look at the section entitled A BRIEF INTRODUCTION TO THE VBA IDE & THE OBJECT BROWSER UTILITY, which appears at the beginning of the following article:
   [b]Tutorial:[/b] Simplify Developing OLE Automation Code Using VBA
The rest of the article shows how I prefer to write custom OLE procedures -- by first writing them as VBA procedures and testing them in the VBA environment, before adapting them to PL/SQL. Because the VBA IDE provides syntax checking, code completion and meaningful error messages, writing automation code goes much more smoothly on this end, and errors are usually detected at design time. So much more smoothly, in fact, that I can implement a procedure twice -- once in VBA, and once in PL/SQL -- more quickly than I can implement it once in PL/SQL, skipping the VBA prototype. Also, most of my VBA prototypes run to completion more quickly than launching a trivial web form, so a significant time savings can realized by experimenting and refining on the VBA end, rather than spending all of my time effectively waiting for my web form to load.
Hope this helps,
Eric Adamson
Lansing, Michigan

Similar Messages

  • OLE with MS Word

    Hello,
    I've experienced some problems in manipulating Word documents on OLE Controls at Developer/2000 Forms. When I open a document from a OLE Control for the second time, using the EXE_CVERB instruction, it opens the desired document, plus another one called 'Document 1'. That new document is in someway linked to the first one and after this all the OLE commands to the document are ignored.
    Did anyone experienced these problems ?
    Thanks in advance,
    lm

    I've finally had a chance to run your code. Oddly enough, it runs fine for me (most likely a JACOB versioning quirk.) Upon closer inspection, I find that the Show method of a Dialog object returns a Long, not an object, suggesting that the problem is an incompatible return value type. Try declaring I_type_num_client as type NUMBER, rather than CLIENT_OLE2.OBJ_TYPE -- I'm guessing that should fix your error.
    If you're wondering where Word's objects, methods, arguments and argument types are documented, I use VBA's Object Browser for this, and simply couldn't manage without it. Have a look at the section entitled A BRIEF INTRODUCTION TO THE VBA IDE & THE OBJECT BROWSER UTILITY, which appears at the beginning of the following article:
       [b]Tutorial:[/b] Simplify Developing OLE Automation Code Using VBA
    The rest of the article shows how I prefer to write custom OLE procedures -- by first writing them as VBA procedures and testing them in the VBA environment, before adapting them to PL/SQL. Because the VBA IDE provides syntax checking, code completion and meaningful error messages, writing automation code goes much more smoothly on this end, and errors are usually detected at design time. So much more smoothly, in fact, that I can implement a procedure twice -- once in VBA, and once in PL/SQL -- more quickly than I can implement it once in PL/SQL, skipping the VBA prototype. Also, most of my VBA prototypes run to completion more quickly than launching a trivial web form, so a significant time savings can realized by experimenting and refining on the VBA end, rather than spending all of my time effectively waiting for my web form to load.
    Hope this helps,
    Eric Adamson
    Lansing, Michigan

  • OLE Automation for Word. EditGoto with Word 97

    I found a solution. Instead EditGoto, use WW7_EditGoto.
    Example:
    .- A Word Template whith two bookmarks
    (Texto1, Tabla1). A normal bookmark
    (Texto1) and a bookmark into a Word
    Table (Tabla1).
    In the Word Table, is posible change
    cell o create a new row with the same
    command (NextCell).
    The word table has two columns an two
    rows.
    The first row is the Header.
    The second row the first column contain
    a bookmark (Tabla1).
    .- A Form whit two blocks:
    First block with two items:
    nombre_doc
    texto1
    Secod Block (multirecord) whit two items
    col1
    col2
    with a When-Button-Pressed:
    DECLARE
    application OLE2.OBJ_TYPE;
    args OLE2.LIST_TYPE;
    BEGIN
    -- Start WordBasic and make Word visible
    application:=OLE2.CREATE_OBJ('Word.Basic');
    OLE2.INVOKE(application, 'AppShow');
    -- Open a Word document
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args,'Plantilla.dot');
    OLE2.INVOKE(application, 'FileOpen', args);
    OLE2.DESTROY_ARGLIST(args);
    -- Put Text in the first bookmark
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args,'Texto1');
    OLE2.INVOKE(application, 'WW7_EditGoto', args);
    OLE2.DESTROY_ARGLIST(args);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args,:Texto1);
    OLE2.INVOKE(application, 'Insert', args);
    OLE2.DESTROY_ARGLIST(args);
    -- Send data from Multirecord Block to Word Table
    GO_BLOCK('MULTI');
    FIRST_RECORD;
    IF :SYSTEM.RECORD_STATUS != 'NEW' THEN
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args,'Tabla1');
    OLE2.INVOKE(application, 'WW7_EditGoto', args);
    OLE2.DESTROY_ARGLIST(args);
    LOOP
    IF :col1 IS NOT NULL THEN
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args,:col1);
    OLE2.INVOKE(application, 'Insert', args);
    OLE2.DESTROY_ARGLIST(args);
    END IF;
    OLE2.INVOKE(application, 'NextCell');
    IF :col2 IS NOT NULL THEN
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args,:col2);
    OLE2.INVOKE(application, 'Insert', args);
    OLE2.DESTROY_ARGLIST(args);
    END IF;
    EXIT WHEN :SYSTEM.LAST_RECORD = 'TRUE';
    NEXT_RECORD;
    OLE2.INVOKE(application, 'NextCell');
    END LOOP;
    -- Save a Word document
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args,:nombre_doc);
    OLE2.INVOKE(application, 'FileSaveas', args);
    OLE2.DESTROY_ARGLIST(args);
    --Release the OLE object
    OLE2.RELEASE_OBJ(application);
    END;
    Sorry by the sintax, but i don't speak English.
    I hope it solves this problem.

    Hello,
    I am also trying to use the OLE2 package for OLE Automation. But
    difference being that I am not using Word but am using an
    invisible control for Mail services, using the objects
    MAPISession, MAPImessages. If anyone out there had already done
    this do please give me a code snippet.
    Thanx in advance
    Anup Mistry,
    Programmer/Analyst,
    IIS,Inc
    Vasile (guest) wrote:
    : Hi Daniel,
    : I used OLE with forms 5 ,but now it work without problems in
    : forms 6, too.
    : A procedure that save doc. look like that:
    : procedure filesaveas (fname in varchar2) is
    : arglist ole2.list_type;
    : begin
    : arglist := ole2.create_arglist;
    : ole2.add_arg (arglist, fname);
    : ole2.invoke (obj_hnd, 'filesaveas', arglist);
    : ole2.destroy_arglist (arglist);
    : end;
    : I hope this help you.
    : Vasile
    : Daniel Fox (guest) wrote:
    : : I am using Forms 6.0
    : : Can anyone help with OLE automation using OLE2.
    : : I can open Word, document stored in long raw, even insert
    data
    : : from other form field into the Word Document (only at the
    : : beginning of the Document, though).
    : : All the File commands, such as FileSaveAs, EditGoTo, etc..
    : don't
    : : work. They are simply ignored - no error messages, nothing.
    : : Does anyone use Word Automation through Forms 6.0?
    : : Please, HELP....
    : : Thanks in advance,
    : : Desperate Daniel.
    null

  • Linked Ole Object with MS Word has bad resloution / invalid fonts

    Post Author: Winfried Boennhoff
    CA Forum: .NET
    Environment: .Net 2003 Viewer with external .rpt created by CR XI
    As result I get a bad resolution of the word document and the original fonts are not supported, I tried all common fonts. The font used by CR seems to be default font with a very bad resolution.
    The same effects not only with MS word, although with an linked PDF or any image. All have a very bad resolution.
    Is this a known Problem? Any Idea?

    Post Author: fwinter
    CA Forum: .NET
    We have the same problem. A page footer generated in Word, embedded in a CR-Report shows in the report viewer with overlapping characters. This is "a known limitation" we were told. Not really a problem, but when exported to PDF, the PDF also shows the overlapping characters and prints with overlapping characters as well. This is our problem!We've tried different fonts, different font- an pagesizes in Word, the "can grow" checkbox etc. We believe, the result is affected by the printer driver but cannot really find a way, to avoid the problem and get a clear print at all of our customers.Anyone figured out how to solve the problem? CA Support unfortunatly couldn't help   We are using CR Merge Moduls XI R2 in our Report Viewer, Word 2003, Problem appears on local machines as well as on Citrix.

  • SAP OLE to MS Word

    I have used this coding for sap OLE to Ms word... but if i run this program... MS Word just opens but i am not able to view any of the statements... that is new documents are not openings and the statements  are not reflecting...
    Any one give me a tips what to change in this following code...
    Include for OLE-enabling definitions
    INCLUDE ole2incl .
    *Global variables *Variables to hold OLE object and entity handles
    DATA:     gs_word       TYPE   ole2_object ,
    *"OLE object handle
            gs_documents    TYPE   ole2_object ,
    *"Documents
            gs_actdoc       TYPE   ole2_object  , "Active document
            gs_application  TYPE   ole2_object  , "Application
            gs_options      TYPE   ole2_object  , "Application options
            gs_actwin       TYPE   ole2_object  , "Active window
            gs_actpan       TYPE   ole2_object  , "Active pane
            gs_view         TYPE   ole2_object  , "View
            gs_selection    TYPE   ole2_object  , "Selection
            gs_font         TYPE   ole2_object  , "Font
            gs_parformat    TYPE   ole2_object  , "Paragraph format
            gs_tables       TYPE   ole2_object  , "Tables
            gs_range        TYPE   ole2_object  , "Range handle for various ranges
            gs_table        TYPE   ole2_object  , "One table
            gs_table_border TYPE   ole2_object  , "Table border
            gs_cell         TYPE   ole2_object  , "One cell of a table
            gs_paragraph    TYPE   ole2_object  , "Paragraph
            gv_pos(5)       TYPE   n . "Position information for table
    START-OF-SELECTION .
    *--Creating OLE object handle variable
      CREATE OBJECT gs_word 'WORD.APPLICATION' .
      IF sy-subrc NE 0 .
        MESSAGE s000(su) WITH 'Error while creating OLE object!'.
        LEAVE PROGRAM .
      ENDIF .
    *--Setting object's visibility property
      SET PROPERTY OF gs_word 'Visible' = '1' .
    *--Opening a new document
      GET PROPERTY OF gs_word 'Documents' = gs_documents .
    **--Setting the measurement unit
      GET PROPERTY OF gs_application 'Options' = gs_options .
    SET PROPERTY OF gs_options 'MeasurementUnit' = '1' . "CM
    *Getting handle for the selection which is here the character at the *cursor position
      GET PROPERTY OF gs_application 'Selection' = gs_selection .
      GET PROPERTY OF gs_selection 'Font' = gs_font .
      GET PROPERTY OF gs_selection 'ParagraphFormat' = gs_parformat .
    *--Setting font attributes
      SET PROPERTY OF gs_font 'Name' = 'Arial' .
      SET PROPERTY OF gs_font 'Size' = '10' .
      SET PROPERTY OF gs_font 'Bold' = '0' . "Not bold
      SET PROPERTY OF gs_font 'Italic' = '1' . "Italic
      SET PROPERTY OF gs_font 'Underline' = '0' . "Not underlined
    *--Setting paragraph format attribute
      SET PROPERTY OF gs_parformat 'Alignment' = '2' . "Right-justified
      CALL METHOD OF gs_selection 'TypeText'
        EXPORTING #1 = 'This is an OLE example!'.
    *--Setting the view to the main document again
      SET PROPERTY OF gs_view 'SeekView' = '0' . "Main document view
    *--Reseting font attributes for the title
      SET PROPERTY OF gs_font 'Name' = 'Times New Roman' .
      SET PROPERTY OF gs_font 'Size' = '16' .
      SET PROPERTY OF gs_font 'Bold' = '1' . "Bold
      SET PROPERTY OF gs_font 'Italic' = '0' . "Not Italic
      SET PROPERTY OF gs_font 'Underline' = '0' . "Not underlined
    *--Setting paragraph format attribute
      SET PROPERTY OF gs_parformat 'Alignment' = '1' . "Centered
      CALL METHOD OF gs_selection 'TypeText'
        EXPORTING #1 = text-001.
    *--Advancing cursor to the new line
      CALL METHOD OF gs_selection 'TypeParagraph' .
    *--Reseting font attributes for ordinary text
      SET PROPERTY OF gs_font 'Name' = 'Times New Roman' .
      SET PROPERTY OF gs_font 'Size' = '12' .
      SET PROPERTY OF gs_font 'Bold' = '0' . "Not bold
      SET PROPERTY OF gs_font 'Italic' = '0' . "Not Italic
      SET PROPERTY OF gs_font 'Underline' = '0' . "Not underlined
    *--Setting paragraph format attribute
      SET PROPERTY OF gs_parformat 'Alignment' = '3' . "Justified
      CALL METHOD OF gs_selection 'TypeText'
        EXPORTING #1 = text-001.
    *--skip some lines
      DO 4 TIMES .
        CALL METHOD OF gs_selection 'TypeParagraph' .
      ENDDO .
    *--Getting entity handles for the entities on the way
      GET PROPERTY OF gs_actdoc 'Tables' = gs_tables .
      GET PROPERTY OF gs_selection 'Range' = gs_range .
    *--Adding a table with 3 rows and 2 columns
      CALL METHOD OF gs_tables 'Add' = gs_table
      EXPORTING #1 = gs_range " Handle for range entity
                #2 = '3' "Number of rows
                #3 = '2'. "Number of columns
    *--Setting border attribute for the table
      GET PROPERTY OF gs_table 'Borders' = gs_table_border .
      SET PROPERTY OF gs_table_border 'Enable' = '1' . "With border
    *Filling the table with dummy data *Reseting font attributes for table content
      SET PROPERTY OF gs_font 'Name' = 'Garamond' .
      SET PROPERTY OF gs_font 'Size' = '11' .
      SET PROPERTY OF gs_font 'Bold' = '0' . "Not bold
      SET PROPERTY OF gs_font 'Italic' = '0' . "Not Italic
      SET PROPERTY OF gs_font 'Underline' = '0' . "Not underlined
    *--Getting cell coordinates
      CALL METHOD OF gs_table 'Cell' = gs_cell
      EXPORTING #1 = '1' "first row
                #2 = '1'. "first column
    *--Getting the range handle to write the text
      GET PROPERTY OF gs_cell 'Range' = gs_range .
    *--Filling the cell
      SET PROPERTY OF gs_range 'Text' = 'OLE' .
    *--Getting cell coordinates
      CALL METHOD OF gs_table 'Cell' = gs_cell
      EXPORTING
            #1 = '3' "third row
            #2 = '2'. "second column
    *--Reseting font attributes for ordinary text
      SET PROPERTY OF gs_font 'Name' = 'Times New Roman' .
      SET PROPERTY OF gs_font 'Size' = '12' .
      SET PROPERTY OF gs_font 'Bold' = '0' . "Not bold
      SET PROPERTY OF gs_font 'Italic' = '0' . "Not Italic
      SET PROPERTY OF gs_font 'Underline' = '0' . "Not underlined
    *--Setting paragraph format attribute
      SET PROPERTY OF gs_parformat 'Alignment' = '3' . "Justified *--Indent the paragraph once
      GET PROPERTY OF gs_selection 'Paragraphs' = gs_paragraph .
      CALL METHOD OF gs_paragraph 'Indent' .
      CALL METHOD OF gs_selection 'TypeText'
        EXPORTING
        #1 = text-001.
      FREE OBJECT gs_word .
    Thanks @ Regards,
    Hema

    HI Hema,
    To open new document add this line.
    *--Opening a new document
    get property of gs_word 'Documents' = gs_documents.
    call method of gs_documents 'ADD' ."= gs_document.
    Regards,
    Sravanthi

  • Is there a way to create form fields to tab into and type and or drop down selection fields in pages as you can with microsoft word?

    is there a way to create form fields to tab into and type and or drop down selection fields in pages as you can with microsoft word?

    No

  • Application services not working with MS Word 2004

    for some reason, application services with MS Word 2004 no longer work with Leopard for me (all grayed out). I would appreciate any advice
    thanks,
    bill

    Bill
    Because Word 2004 doesn't support Services. Firefox is another app that doesn't.
    Regards
    TD

  • New MBP, and am having memory trouble errors with MS Word 2004

    Hi,
    I know this has been talked about before, but I'm not sure where to post this question. I have a new MBP, with a full version of Word (no previous trial software installed). I have been trying to copy and past basic text files from Yahoo mail, to create a book of emails of sorts. My file size has been approaching my memory capacity (basic setup). Does it not create a swap file and let you keep going if you approach the limits of the onboard memory? I understand it will run a bit slower, but I'm only moving text files and nothing else. Why the proverbial memory/disk full error messages? Does it have anything to do with the software being non universal code?
    Do I need to get rid of temporary files, as Im copying and pasting alot? If so, how?
    Anyone have the same trouble, and have a clear solution? I could also swear my MPB is running alot slower with Word than I would have expected.
    Any help you can give me would b appreciated.
    Thanks,
    Dave

    I’ll try to answer your questions briefly without going into too much detail. First of all, I think the error message you are seeing is generated by MS Word and not your operating system. That particular error, and other similar ones, are quite common in Word in particular situations and are the result of a known bug.
    As far as I know, there is no fix, but there are several work-arounds. The bug has to do with the number of temporary files that get created when working with large Word files. As you might guess, the larger your file, the larger the temp files, and they will quickly fill up your existing RAM, which then causes the error that generates the message. You have to delete the temp files---you can do that by saving and closing your file, then restart it. There are some scripts you can run, but that is beyond what I want to get into here (and usually is not necessary).
    The other problem is that by copying and pasting text from Yahoo Mail, you are not pasting simple text---you are pasting all the HTML code, formatting, and everything else that is contained in that text. And Word saves it all, then adds its own formatting and other code---leading to corrupt files sooner or later.
    And then, to make it all worse, if your file is as large as you say it is (close to system memory in size), that is one huge Word file, and Word does not handle really large files very well, especially Word 2004, but all versions of Word, Windows versions included, have trouble with large files.
    Word does in fact run slowly on even the newest MacBook Pros because Word is not yet compiled for the Intel Macs and does not run natively as a universal binary but runs under Rosetta, which translates Word to run on Apple computers running Intel CPUs. If you are working with small files, it isn’t too bad, but big files will slow it down to almost a crawl at times, or it will even stop responding for several seconds between each command.
    You can work around these problems by breaking your file into much smaller ones, save often (and close the file once in while), and save as a text file, rather than as a doc file.
    An alternative is to use another word processor or text editor to save your copied text---there are many that will work as well as or better than Word for what you want to do. Pages is a good alternative----I have to collaborate on Word files every day, and I prefer to work on my MacBook Pro (although I also use Windows-based computers about as frequently, too), and except for the most complex Word files with tables, charts, and pictures, Pages works very well, and you can save the file as a Word document, too, if you need to.
    Hope that answers some of your questions----and always remember….I could be wrong.

  • I want to email a Pages document as a Word doc. I used to be able to do this by clicking on share then send via mail then on Word and an email would appear with my word doc attached.  Now the email does not come up.  Why?

    I want to email a Pages document as a Word doc. I used to be able to do this by clicking on 'share' then 'send via mail' then on 'Word' and an email would appear with my word doc attached.  Now the email does not come up.  Why?

    It's difficult to do more than guess when you don't say what version of OS X or Pages you're running, but if you're on the latest, have you tried the Share menu -> Send via Mail command?
    If that doesn't help, you may have better luck if you ask in the Pages forum:
    Pages
    When you repost, be sure to include full details about your versions so that people know what it is you're working with.
    Regards.

  • HT4539 Everytime i go to download an app on my ipod touch the app begins to download with the words "wating" underneath the app....then after a few seconds the app completely disappears.. i tried to switch wifi networks, i've reset my billing info, i need

    Everytime i go to download an  App from my Ipod Touch, the app begins to download with the words, "Waiting" underneath it.
    ....after a few seconds....the App DISAPPEARS!...i've tried turning it on and off, reseting billing information, going to downloads to resume but the app isn't even in the downloads section...I NEED HELP! I WANT TO PLAY TETRIS!!!

    https://iforgot.apple.com/appleid
    If you forgot your Apple ID password - Apple Support
    Contact Apple for help with Apple ID account security
    https://ssl.apple.com/emea/support/itunes/contact.html

  • HT4623 I updated my mini, but some of my apps are no longer available. One of them I purchased from the Apple store.  They are grayed out with the word "waiting" underneath the app.  Any suggestions?

    I updated my mini, but some of my apps are no longer available. One of them I purchased from the Apple store.  They are grayed out with the word "waiting" underneath the app.  Any suggestions?

    If there are multiple apps trying to download at once, only one can download at a time and the rest say "Waiting" until it is then their turn. Try this. Double tap the icon of the Waiting app, and it should resume the download.
    How to Solve the Problem of An iPad App Download Stuck on “Waiting”
    http://ipadacademy.com/2012/06/how-to-solve-the-problem-of-an-ipad-app-download- stuck-on-waiting
    How To Get Rid Of Your iPad App Download Frozen Problem
    http://www.sidelineapple.com/how-to-get-rid-of-your-ipad-app-download-frozen-pro blem-and-not-lose-years-of-your-life-video/
    Another thing to try - Turn the iPad Off & then back ON.
    If that doesn't work:
    •  Log out of your iTunes store account.  Go to Settings > Store > Sign Out Then press the Home button.
    • Then press and hold the Home and Sleep buttons simultaneously and don't release them when it brings up the Turn Off screen; keep holding them until the Apple logo appears.
    • After restart, the Waiting should be gone.
     Cheers, Tom

  • Computer won't start up after recent version of mountain lion.  My power Mac was running extmely slow this morning, so i shut down to restart.  As it is starting the screen goes black, says something about debugging with the word panic in parentheses. was

    I upgraded to latest version of mountain lion yesterday, this morning my power Mac was running extremely slowly (while typing, had to wait a second or two for words to appear), I shut down to see if problem would clear up.  When starting up, screen went black with programming jargon, something about debugging with the word panic in parentheses.  Screen then goes back to gray, says Mac encountered a problem and has to restart once I push a key.  Apple logo comes on gray screen, icon keeps circling and nothing happens.  This has happened three times in a row after shutting down and trying to restart.  Any thoughts?

    When verifying disk, said could not repair disk, back up as many files as possible then re format disk.  Computer now doing Internet recovery. Should I. Do the following in this order
    1 restore from back up on time machine
    2 re install osx
    These are the options coming up on osx utilities window

  • How to open a .DOC file with MS-Word ?

    Hye fellow Java freaks,
    I have made an application to upload .DOC and .RTF files to the server using servlets and the Jakarta Commons FileUpload package.
    The files are uploading successfully.
    Now, I want to place a link to the most recently uploaded file and then, on clicking that link, I want the file to open not in the browser, rather with MS-Word.
    What is the servlet code that I should implement to accomplish this ?
    Any suggesions ?
    Thanx in advance.

    I think this is a client-side issue - how the browser chooses to deal with the .doc file it receives.
    You can 'save as' and then open the file by hand.
    --Jon                                                                                                                                                                                                                                                                                                                               

  • After opening my yahoo mail window, I keep getting a very narrow dialogue box with the words "log into Xmarks" I cannot ... and everything is frozen. How can I get rid of this thing, and what is it? I have to hit CNTRL + ALT + ESC to get rid of it.

    After opening my yahoo mail window, I keep getting a very short and narrow dialogue box with the words "log into Xmarks" I cannot ... when it pops up, always upper left of my laptop screen and I try to get into my yahoo mail web page, I get a DING sound and cannot enter it ... everything is frozen. I have to hit CNTRL + ALT + ESC to get rid of it - and then reload my Firefox browser to get back to my yahoo e-mail page ... fortunately for me, Firefox re-stores a previous session ... How can I get rid of this intrusive thing, and what is it? Thanks in advance ... Ted Beaudoin, Welland, ON, Canada

    Remove VideoFileDownload and find a downloader that doesn't contain TextEnhance.

  • Help with MS Word, (Yes I have asked MS)

    I'm trying to solve a simple problem with Microsoft Word (2008 for Mac). I have tried on the Microsoft forums, they're useless.
    My problem sounds simple I cannot get my font size to "stick".
    I will change my font size to a 14.   As soon as I press the return key word jumps back to font size 10.  I then must reset the font size to 14 (very frustrating).
    I have spent hours trying to find the setting to lock-in the font size I want.
    Thanks.

    If these problems occur only in a single custom template, not in the default blank document, that is a very important piece of information.  Please confirm whether that is true, as it isolates the problem.  Once you have confirmed that, read the rest of this post for one possible solution...
    When you create a new paragraph by pressing <Enter>, Word sets the style for the new paragraph based on the Style for following paragraph setting in the style of the current paragraph.  The paragraph style you are now using should set the style for the following paragraph to the same as the current style. So the font size and paragraph spacing should stay the same as you type successive paragraphs.  Even if you override the style by explicitly changing the font size or paragraph spacing, new paragraphs will use that font size and paragraph spacing unless the style specifies a different style for following paragraphs.
    The top of the Modify Style dialog in Word 2011 looks like this pic, I don't remember what it looked like in Word 2008 but is probably similar.  For the style you are now using, the 1st and 4th settings must match or the changes you make to font size and paragraph spacing will not be retained when you create new paragraphs by pressing <Enter>.
    1. Determine the paragraph style being used when you type text (look in the toolbar to see what style is selected).
    2. Modify that style to see the dialog pictured above (right-click the style in the toolbar; modify).
    3. Verify that the Style for following paragraph matches the current style Name.

Maybe you are looking for

  • How to get my .pdf filesize down (I have tried many things!)

    Hi everyone. After about an hour and a half of thoroughly searching the web, seeing others suggestions that don't work for me, or trying online resizers, I am now officially pissed off, especially since I consider myself a somewhat computer savvy per

  • USR0013 - DeskI BO XI 3.1 Client Login

    I am unable to Login to DeskI in BO XI 3.1 using BO XI 3.1 Client on a Windows XP machine. Attempt-1: System: Server_Name:6400 Authentication: Enterprise Error Message: Cannot acces the repository, (USR0013) Details: [repo_proxy 13] SessionFacade::op

  • How can I do this flare in Illustrator?

    Need to recreate a logo which I think it was originally done in Photoshop, but I prefer the sharp edged vectors of Illustrator for the main part of the logo. Please ignore all the greeny blue pink rubbish. What I want to recreate is the white flare w

  • Sale order Query

    SELECT T0.[DocNum], T1.[Project], T2.[PrjName], T1.[CogsOcrCod] as Region, T1.[CogsOcrCo2] as Branch,T1.[WhsCode],  T1.[Dscription],T1.[LineStatus],T1.[Quantity], T1.[OpenQty],T0.[DocCur], T1.[Price], T0.[U_OrderStatus], T3.[DocNum],T3.[cardname],T3.

  • OC4J Instance Configuration Assistant Error on Install

    I'm installing iAS-903 on Red Hat 8.0. I managed to get through the linking parts OK but when I get to the Configuration Tools part at the end, I get an error with the OC4J Instance Configuration Assistant. Something about permissions. Has anybody se