Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Win32::ole and MSWord

by vek (Prior)
on Sep 15, 2002 at 17:48 UTC ( [id://198052]=note: print w/replies, xml ) Need Help??


in reply to Win32::ole and MSWord

LINKAGE SECTION IDENTIFICATION DIVISION ENVIRONMENT DIVISION WORKING-STORAGE SECTION
We use COBOL for some of our legacy applications here. I've never seen these particular statements in Perl code however, interesting...

-- vek --

Replies are listed 'Best First'.
Re^2: Win32::ole and MSWord
by justlooking (Initiate) on Jun 24, 2004 at 18:00 UTC
    Running this code, I was prompted to save my document and confirm its name. Is there a way to force the document to save and accept the name given, without user interaction?
      4 Years late but may be useful to others, Haven't read all the code but i've used this statement when i've been using OLE
      $Active::Document->{Saved} = 1; $Active::Document->Close;
      Although to be honest, You're better to use the save as like Kenny did. Here's some more on SaveAs() method if anyone needs an example:
      my $MSDN_const = { %{ Win32::OLE::Const->Load("Microsoft Word 11.0 Object Library +") } }; # Save as normal MS Word document $Active::Document->SaveAs( { FileName=>'C:\\My_Word_Document.doc', FileFormat=>$MSDN_const->{wdFormatDocument} } ); # Save in XML format $Active::Document->SaveAs( { FileName=>'C:\\My_XML_Document.xml', FileFormat=>$MSDN_const->{wdFormatXML} } );
        And five years later :-)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://198052]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (6)
As of 2024-04-23 19:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found